MCPcopy Create free account
hub / github.com/HendrixString/Android-Zorn / IWorker

Interface IWorker

src/main/java/com/hendrix/zorn/workers/IWorker.java:14–37  ·  view source on GitHub ↗

interface for worker @author Tomer Shalev

Source from the content-addressed store, hash-verified

12 *
13 */
14@SuppressWarnings("UnusedDeclaration")
15public interface IWorker extends IId, IPriority, IWorkable, IDisposable {
16 /**
17 * is the worker running?
18 *
19 * @return {@code true/false}
20 */
21 boolean isWorking();
22
23 /**
24 * has the worker finished?
25 *
26 * @return {@code true/false}
27 */
28 boolean isFinished();
29
30 /**
31 * is the worker ready (has not run yet)?
32 *
33 * @return {@code true/false}
34 */
35 boolean isReady();
36
37}

Callers

nothing calls this directly

Implementers 1

AbstractWorkersrc/main/java/com/hendrix/zorn/workers

Calls

no outgoing calls

Tested by

no test coverage detected