MCPcopy Index your code
hub / github.com/ArtifexSoftware/mupdf / Task

Class Task

platform/java/example/Worker.java:30–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28public class Worker implements Runnable
29{
30 public static class Task implements Runnable {
31 public void work() {} /* The 'work' method will be executed on the background thread. */
32 public void run() {} /* The 'run' method will be executed on the UI thread if work() did not throw any exception. */
33 public void exception(final Throwable t) {} /* The 'exception' method will be executed on the UI thread if work() throws an exception. */
34 }
35
36 protected EventQueue eventQueue;
37 protected LinkedBlockingQueue<Task> queue;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…