Uses of Interface
org.cytoscape.work.TaskObserver
-
Packages that use TaskObserver Package Description org.cytoscape.application.swing.search org.cytoscape.command Interface to support execution of tasks as commands, including the ability to get a list of namespaces, commands, and arguments, and then execute those commands with a set of arguments.org.cytoscape.task.read This package contains a set of task factory interfaces for reading various Cytoscape objects from files and URLs.org.cytoscape.work This package defines the task framework, where tasks are units of work. -
-
Uses of TaskObserver in org.cytoscape.application.swing.search
Methods in org.cytoscape.application.swing.search that return TaskObserver Modifier and Type Method Description TaskObserver
AbstractNetworkSearchTaskFactory. getTaskObserver()
TaskObserver
NetworkSearchTaskFactory. getTaskObserver()
If you want to be notified when the search task is finished, you should return a TaskObserver here. -
Uses of TaskObserver in org.cytoscape.command
Methods in org.cytoscape.command with parameters of type TaskObserver Modifier and Type Method Description TaskIterator
CommandExecutorTaskFactory. createTaskIterator(File commandFile, TaskObserver observer)
Creates a task iterator that will execute the specified commands.TaskIterator
CommandExecutorTaskFactory. createTaskIterator(String namespace, String command, Map<String,Object> args, TaskObserver observer)
Creates a task iterator that will execute the specified command.TaskIterator
CommandExecutorTaskFactory. createTaskIterator(List<String> commands, TaskObserver observer)
Creates a task iterator that will execute the specified commands.TaskIterator
CommandExecutorTaskFactory. createTaskIterator(TaskObserver observer, String... commands)
Creates a task iterator that will execute the specified commands. -
Uses of TaskObserver in org.cytoscape.task.read
Methods in org.cytoscape.task.read with parameters of type TaskObserver Modifier and Type Method Description TaskIterator
LoadNetworkFileTaskFactory. createTaskIterator(File file, TaskObserver observer)
Creates a task iterator for loading a network from a file.TaskIterator
LoadNetworkURLTaskFactory. createTaskIterator(URL url, TaskObserver observer)
Creates a task iterator for loading a URL into a network.TaskIterator
LoadVizmapFileTaskFactory. createTaskIterator(File file, TaskObserver observer)
Creates a task iterator for loading files into visual styles. -
Uses of TaskObserver in org.cytoscape.work
Methods in org.cytoscape.work with parameters of type TaskObserver Modifier and Type Method Description TaskIterator
TunableSetter. createTaskIterator(TaskIterator taskIterator, Map<String,Object> tunableValues, TaskObserver observer)
This version of createTaskIterator adds a TaskObserver argument.void
TaskManager. execute(TaskIterator iterator, TaskObserver observer)
-