|
__init__(...)
__init__( (object)arg1) -> None : |
|
|
|
add_callback(...)
add_callback( (task)arg1, (str)arg2, (object)arg3) -> int :
add a new callback to this task instance |
|
|
|
cancel(...)
cancel( (task)arg1) -> None :
cancel this task instance |
|
|
|
get_metric(...)
get_metric( (task)arg1, (str)arg2) -> metric :
returns a specific metric associated with this task instance |
|
|
|
get_object(...)
get_object( (task)arg1) -> object :
returns the SAGA object associated with this task instance |
|
|
|
get_result(...)
get_result( (task)arg1) -> str :
returns the result of the operation executed by this task instance |
|
|
|
get_state(...)
get_state( (task)arg1) -> task_state :
returns the state of this task instance |
|
|
|
list_metrics(...)
list_metrics( (task)arg1) -> object :
returns the list of metrics associated with this task instance |
|
|
|
remove_callback(...)
remove_callback( (task)arg1, (str)arg2, (int)arg3) -> None :
remove the given callback from this task instance |
|
|
|
rethrow(...)
rethrow( (task)arg1) -> None :
rethrow any error occurred during execution of task |
|
|
|
run(...)
run( (task)arg1) -> None :
run this task instance |
|
|
|
wait(...)
wait( (task)arg1, (float)arg2) -> bool :
wait for this task instance to finish |
|
|
Inherited from object :
__reduce__ ,
clone ,
get_id ,
get_object_type_name ,
get_session ,
get_type
Inherited from unreachable.instance :
__new__
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
|
ASync = saga._engine.routine_type.ASync
|
|
Canceled = saga._engine.task_state.Canceled
|
|
Done = saga._engine.task_state.Done
|
|
Failed = saga._engine.task_state.Failed
|
|
New = saga._engine.task_state.New
|
|
Running = saga._engine.task_state.Running
|
|
Sync = saga._engine.routine_type.Sync
|
|
Task = saga._engine.routine_type.Task
|
|
Unknown = saga._engine.task_state.Unknown
|
Inherited from object :
Advert ,
AdvertDirectory ,
Buffer ,
Context ,
Directory ,
Endpoint ,
Exception ,
File ,
IOVec ,
Job ,
JobDescription ,
JobSelf ,
JobService ,
LogicalDirectory ,
LogicalFile ,
Metric ,
Msg ,
NSDirectory ,
NSEntry ,
Parameter ,
RPC ,
Session ,
Stream ,
StreamService ,
TaskContainer ,
URL ,
__instance_size__
|