Uses of Interface
org.cytoscape.work.TaskManager
-
Packages that use TaskManager Package Description org.cytoscape.app This is the Cytoscape App API, which supports development of Cytoscape 3.X apps in a manner similar to apps developed in Cytoscape 2.X.org.cytoscape.work This package defines the task framework, where tasks are units of work.org.cytoscape.work.swing This packages provides Swing-specific specialisations of concepts from work-api This includesTaskFactory
,TaskManager
, andTaskIterator
. -
-
Uses of TaskManager in org.cytoscape.app
Methods in org.cytoscape.app that return TaskManager Modifier and Type Method Description TaskManager
CyAppAdapter. getTaskManager()
Deprecated.Returns an instance ofTaskManager
. -
Uses of TaskManager in org.cytoscape.work
Subinterfaces of TaskManager in org.cytoscape.work Modifier and Type Interface Description interface
SynchronousTaskManager<T>
A marker interface that indicates that the TaskManager in question will execute the tasks found in the TaskFactory synchronously with the current thread, blocking code execution until all tasks finish.Classes in org.cytoscape.work that implement TaskManager Modifier and Type Class Description class
AbstractTaskManager<T,C>
Provides access to a TunableInterceptor to all derived classes and a utility method to determine if an object has been annotated with Tunables. -
Uses of TaskManager in org.cytoscape.work.swing
Subinterfaces of TaskManager in org.cytoscape.work.swing Modifier and Type Interface Description interface
DialogTaskManager
interface
PanelTaskManager
A specialization of a TaskManager that creates a JPanel configuration object and expects its execution context to be another JPanel.
-