Uses of Interface
brooklyn.management.Task

Packages that use Task
brooklyn.entity   
brooklyn.entity.basic   
brooklyn.management   
 

Uses of Task in brooklyn.entity
 

Methods in brooklyn.entity that return Task
<T> Task<T>
Entity.invoke(Effector<T> eff, Map<String,?> parameters)
          Invokes the given effector, with the given parameters to that effector.
 

Uses of Task in brooklyn.entity.basic
 

Methods in brooklyn.entity.basic with parameters of type Task
<T> T
EntityLocal.setConfig(ConfigKey.HasConfigKey<T> key, Task<T> val)
           
<T> T
EntityLocal.setConfig(ConfigKey<T> key, Task<T> val)
           
 

Uses of Task in brooklyn.management
 

Methods in brooklyn.management that return Task
 Task<?> ExecutionContext.getCurrentTask()
          Deprecated. in 0.5, use Tasks.current()
 Task<?> Task.getSubmittedByTask()
          task which submitted this task, if was submitted by a task
 Task ExecutionManager.getTask(String id)
          returns the task with the given ID, or null if none
<T> Task<T>
ExecutionManager.submit(Callable<T> c)
          see ExecutionManager.submit(Map, Task)
<T> Task<T>
ExecutionManager.submit(Map<?,?> flags, Callable<T> c)
          see ExecutionManager.submit(Map, Task)
<T> Task<T>
ExecutionContext.submit(Map<?,?> properties, Callable<T> callable)
          See ExecutionManager.submit(Map, Task) for properties that can be passed in.
<T> Task<T>
ExecutionManager.submit(Map<?,?> flags, Object c)
          Deprecated. While refactoring groovy->java; use strongly typed methods
 Task<?> ExecutionManager.submit(Map<?,?> flags, Runnable r)
          see ExecutionManager.submit(Map, Task)
 Task<?> ExecutionContext.submit(Map<?,?> properties, Runnable runnable)
          See ExecutionManager.submit(Map, Task) for properties that can be passed in.
<T> Task<T>
ExecutionManager.submit(Map<?,?> flags, Task<T> task)
          Submits the given Task for execution in the context associated with this manager.
 Task<?> ExecutionManager.submit(Runnable r)
          see ExecutionManager.submit(Map, Task)
<T> Task<T>
ExecutionManager.submit(Task<T> task)
          see ExecutionManager.submit(Map, Task)
<T> Task<T>
ExecutionContext.submit(Task<T> task)
           
 

Methods in brooklyn.management that return types with arguments of type Task
 Set<Task<?>> ExecutionContext.getTasks()
          Get the tasks executed through this context (returning an immutable set).
 Set<Task<?>> ExecutionManager.getTasksWithAllTags(Iterable<?> tags)
          returns all tasks that have all of the given tags (immutable)
 Set<Task<?>> ExecutionManager.getTasksWithAnyTag(Iterable<?> tags)
          returns all tasks that have any of the given tags (immutable)
 Set<Task<?>> ExecutionManager.getTasksWithTag(Object tag)
          returns all tasks with the given tag (immutable)
 

Methods in brooklyn.management with parameters of type Task
<T> Task<T>
ExecutionManager.submit(Map<?,?> flags, Task<T> task)
          Submits the given Task for execution in the context associated with this manager.
<T> Task<T>
ExecutionManager.submit(Task<T> task)
          see ExecutionManager.submit(Map, Task)
<T> Task<T>
ExecutionContext.submit(Task<T> task)
           
 



Copyright © 2013. All Rights Reserved.