| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
??.instance --+
|
object --+
|
task
saga::task type
|
|||
| routine_type | |||
| task_state | |||
|
Inherited from |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
|
|||
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 returns the SAGA object associated with this task instance |
|||
|
state returns the state of this task instance |
|||
|
Inherited from Inherited from |
|||
|
|||
__init__( (object)arg1) -> None :
C++ signature :
void __init__(_object*)
__init__( (object)arg1, (task_state)arg2) -> None :
C++ signature :
void __init__(_object*,saga::task_base::state)
|
add_callback( (task)arg1, (str)arg2, (object)arg3) -> int :
add a new callback to this task instance
C++ signature :
unsigned int add_callback(saga::task,std::string,boost::python::api::object)
add_callback( (task)arg1, (str)arg2, (object)arg3, (object)arg4) -> int :
add a new callback to this task instance
C++ signature :
unsigned int add_callback(saga::task,std::string,boost::python::api::object,boost::python::api::object)
|
cancel( (task)arg1) -> None :
cancel this task instance
C++ signature :
void cancel(saga::task {lvalue})
|
get_metric( (task)arg1, (str)arg2) -> metric :
returns a specific metric associated with this task instance
C++ signature :
saga::metric get_metric(saga::task {lvalue},std::string)
|
get_object( (task)arg1) -> object :
returns the SAGA object associated with this task instance
C++ signature :
saga::object get_object(saga::task {lvalue})
|
get_result( (task)arg1) -> str :
returns the result of the operation executed by this task instance
C++ signature :
std::string get_result(saga::task {lvalue})
get_result( (task)arg1) -> bool :
returns the result of the operation executed by this task instance
C++ signature :
bool get_result(saga::task {lvalue})
get_result( (task)arg1) -> url :
returns the result of the operation executed by this task instance
C++ signature :
saga::url get_result(saga::task {lvalue})
get_result( (task)arg1) -> object :
returns the result of the operation executed by this task instance
C++ signature :
std::vector<saga::url, std::allocator<saga::url> > get_result(saga::task {lvalue})
|
get_state( (task)arg1) -> task_state :
returns the state of this task instance
C++ signature :
saga::task_base::state get_state(saga::task {lvalue})
|
list_metrics( (task)arg1) -> object :
returns the list of metrics associated with this task instance
C++ signature :
std::vector<saga::metric, std::allocator<saga::metric> > list_metrics(saga::task {lvalue})
|
remove_callback( (task)arg1, (str)arg2, (int)arg3) -> None :
remove the given callback from this task instance
C++ signature :
void remove_callback(saga::task {lvalue},std::string,unsigned int)
|
rethrow( (task)arg1) -> None :
rethrow any error occurred during execution of task
C++ signature :
void rethrow(saga::task {lvalue})
|
run( (task)arg1) -> None :
run this task instance
C++ signature :
void run(saga::task {lvalue})
|
wait( (task)arg1, (float)arg2) -> bool :
wait for this task instance to finish
C++ signature :
bool wait(saga::task {lvalue},double)
|
|
|||
objectreturns the SAGA object associated with this task instance
|
statereturns the state of this task instance
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Sep 28 13:25:13 2009 | http://epydoc.sourceforge.net |