OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exitWhenFinished
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Email/src/org/apache/commons/io/
FileCleaner.java
32
* {@link #
exitWhenFinished
}, typically in
137
* @deprecated Use {@link FileCleaningTracker#
exitWhenFinished
()}.
139
public static synchronized void
exitWhenFinished
() {
140
theInstance.
exitWhenFinished
();
FileCleaningTracker.java
36
* {@link #
exitWhenFinished
}, typically in
55
volatile boolean
exitWhenFinished
= false;
131
if (
exitWhenFinished
) {
132
throw new IllegalStateException("No new trackers can be added once
exitWhenFinished
() is called");
173
public synchronized void
exitWhenFinished
() {
175
exitWhenFinished
= true;
201
// thread exits when
exitWhenFinished
is true and there are no more tracked objects
202
while (
exitWhenFinished
== false || trackers.size() > 0) {
Completed in 51 milliseconds