Home | Trees | Indices | Help |
|
---|
|
object --+ | ??.instance --+ | _engine.object --+ | _engine.task --+ | job
Nested Classes | |
Inherited from _engine.task | |
---|---|
routine_type | |
task_state | |
Inherited from _engine.object | |
object_type |
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|||
Inherited from _engine.task | |||
---|---|---|---|
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from _engine.object | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Class Variables | |
Inherited from _engine.task | |
---|---|
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 _engine.object | |
Advert = saga._engine.object_type.Advert
|
|
AdvertDirectory = saga._engine.object_type.AdvertDirectory
|
|
Buffer = saga._engine.object_type.Buffer
|
|
CPRCheckpoint = saga._engine.object_type.CPRCheckpoint
|
|
CPRDirectory = saga._engine.object_type.CPRDirectory
|
|
CPRJob = saga._engine.object_type.CPRJob
|
|
CPRJobDescription = saga._engine.object_type.CPRJobDescription
|
|
CPRJobSelf = saga._engine.object_type.CPRJobSelf
|
|
CPRJobService = saga._engine.object_type.CPRJobService
|
|
Context = saga._engine.object_type.Context
|
|
Directory = saga._engine.object_type.Directory
|
|
Endpoint = saga._engine.object_type.Endpoint
|
|
EntityData = saga._engine.object_type.EntityData
|
|
EntityDataSet = saga._engine.object_type.EntityDataSet
|
|
EntityNavigator = saga._engine.object_type.EntityNavigator
|
|
Exception = saga._engine.object_type.Exception
|
|
File = saga._engine.object_type.File
|
|
IOVec = saga._engine.object_type.IOVec
|
|
Job = saga._engine.object_type.Job
|
|
JobDescription = saga._engine.object_type.JobDescription
|
|
JobSelf = saga._engine.object_type.JobSelf
|
|
JobService = saga._engine.object_type.JobService
|
|
LogicalDirectory = saga._engine.object_type.LogicalDirectory
|
|
LogicalFile = saga._engine.object_type.LogicalFile
|
|
Metric = saga._engine.object_type.Metric
|
|
Msg = saga._engine.object_type.Msg
|
|
NSDirectory = saga._engine.object_type.NSDirectory
|
|
NSEntry = saga._engine.object_type.NSEntry
|
|
Parameter = saga._engine.object_type.Parameter
|
|
RPC = saga._engine.object_type.RPC
|
|
ServiceData = saga._engine.object_type.ServiceData
|
|
ServiceDescription = saga._engine.object_type.ServiceDescription
|
|
ServiceDiscoverer = saga._engine.object_type.ServiceDiscoverer
|
|
Session = saga._engine.object_type.Session
|
|
Stream = saga._engine.object_type.Stream
|
|
StreamServer = saga._engine.object_type.StreamServer
|
|
TaskContainer = saga._engine.object_type.TaskContainer
|
|
URL = saga._engine.object_type.URL
|
|
__instance_size__ = 32
|
Properties | |
Inherited from |
|
Inherited from _engine.task | |
---|---|
object returns the SAGA object associated with this task instance |
|
state returns the state of this task instance |
|
Inherited from _engine.object | |
id returns the id of this instance |
|
session return the session associated with this object instance |
|
type returns the type of this instance |
Method Details |
Raises an exception This class cannot be instantiated from Python
|
attribute_exists( (job)arg1, (str)arg2) -> bool : tests if the given attribute exists for this instance (plain) C++ signature : bool attribute_exists(saga::job::job,std::string) attribute_exists( (job)arg1, (routine_type)arg2, (str)arg3) -> task : tests if the given attribute exists for this instance (task based) C++ signature : saga::task attribute_exists(saga::job::job,saga::python::routine_type,std::string) |
attribute_is_readonly( (job)arg1, (str)arg2) -> bool : tests if the given attribute is read only (plain) C++ signature : bool attribute_is_readonly(saga::job::job,std::string) attribute_is_readonly( (job)arg1, (routine_type)arg2, (str)arg3) -> task : tests if the given attribute is read only (task based) C++ signature : saga::task attribute_is_readonly(saga::job::job,saga::python::routine_type,std::string) |
attribute_is_removable( (job)arg1, (str)arg2) -> bool : tests if the given attribute is removable (plain) C++ signature : bool attribute_is_removable(saga::job::job,std::string) attribute_is_removable( (job)arg1, (routine_type)arg2, (str)arg3) -> task : tests if the given attribute is removable (task based) C++ signature : saga::task attribute_is_removable(saga::job::job,saga::python::routine_type,std::string) |
attribute_is_vector( (job)arg1, (str)arg2) -> bool : tests if the given attribute is a vector attribute (plain) C++ signature : bool attribute_is_vector(saga::job::job,std::string) attribute_is_vector( (job)arg1, (routine_type)arg2, (str)arg3) -> task : tests if the given attribute is a vector attribute (task based) C++ signature : saga::task attribute_is_vector(saga::job::job,saga::python::routine_type,std::string) |
attribute_is_writable( (job)arg1, (str)arg2) -> bool : tests if the given attribute is writable (plain) C++ signature : bool attribute_is_writable(saga::job::job,std::string) attribute_is_writable( (job)arg1, (routine_type)arg2, (str)arg3) -> task : tests if the given attribute is writable (task based) C++ signature : saga::task attribute_is_writable(saga::job::job,saga::python::routine_type,std::string) |
cancel( (job)arg1 [, (float)arg2]) -> None : cancel this job (plain) C++ signature : void cancel(saga::job::job [,double]) cancel( (job)arg1, (routine_type)arg2 [, (float)arg3]) -> task : cancel this job (task based) C++ signature : saga::task cancel(saga::job::job,saga::python::routine_type [,double])
|
checkpoint( (job)arg1) -> None : checkpoint this job (plain) C++ signature : void checkpoint(saga::job::job) checkpoint( (job)arg1, (routine_type)arg2) -> task : checkpoint this job (task based) C++ signature : saga::task checkpoint(saga::job::job,saga::python::routine_type) |
find_attributes( (job)arg1, (str)arg2) -> object : find attributes matching the given pattern (plain) C++ signature : std::vector<std::string, std::allocator<std::string> > find_attributes(saga::job::job,std::string) find_attributes( (job)arg1, (routine_type)arg2, (str)arg3) -> task : find attributes matching the given pattern (task based) C++ signature : saga::task find_attributes(saga::job::job,saga::python::routine_type,std::string) |
get_attribute( (job)arg1, (str)arg2) -> str : returns a (scalar) attribute associated with this object (plain) C++ signature : std::string get_attribute(saga::job::job,std::string) get_attribute( (job)arg1, (routine_type)arg2, (str)arg3) -> task : returns a (scalar) attribute associated with this object (task based) C++ signature : saga::task get_attribute(saga::job::job,saga::python::routine_type,std::string) |
get_description( (job)arg1) -> description : get a copy of the job description this job was created from (plain) C++ signature : saga::job::description get_description(saga::job::job) get_description( (job)arg1, (routine_type)arg2) -> task : get a copy of the job description this job was created from (task based) C++ signature : saga::task get_description(saga::job::job,saga::python::routine_type) |
get_job_id( (job)arg1) -> str : get the job id of this job (plain) C++ signature : std::string get_job_id(saga::job::job) get_job_id( (job)arg1, (routine_type)arg2) -> task : get the job id of this job (task based) C++ signature : saga::task get_job_id(saga::job::job,saga::python::routine_type) |
get_state( (job)arg1) -> job_state : get the state of this job (plain) C++ signature : saga::job::state get_state(saga::job::job) get_state( (job)arg1, (routine_type)arg2) -> task : get the state of this job (task based) C++ signature : saga::task get_state(saga::job::job,saga::python::routine_type)
|
get_stderr( (job)arg1) -> object : get a file object representing the stderr of the spawned job (plain) C++ signature : boost::python::api::object get_stderr(saga::job::job) get_stderr( (job)arg1, (routine_type)arg2) -> task : get a file object representing the stderr of the spawned job (task based) C++ signature : saga::task get_stderr(saga::job::job,saga::python::routine_type) |
get_stdin( (job)arg1) -> object : get a file object representing the stdin of the spawned job (plain) C++ signature : boost::python::api::object get_stdin(saga::job::job) get_stdin( (job)arg1, (routine_type)arg2) -> task : get a file object representing the stdin of the spawned job (task based) C++ signature : saga::task get_stdin(saga::job::job,saga::python::routine_type) |
get_stdout( (job)arg1) -> object : get a file object representing the stdout of the spawned job (plain) C++ signature : boost::python::api::object get_stdout(saga::job::job) get_stdout( (job)arg1, (routine_type)arg2) -> task : get a file object representing the stdout of the spawned job (task based) C++ signature : saga::task get_stdout(saga::job::job,saga::python::routine_type) |
get_vector_attribute( (job)arg1, (str)arg2) -> object : returns a (vector) attribute associated with this object (plain) C++ signature : std::vector<std::string, std::allocator<std::string> > get_vector_attribute(saga::job::job,std::string) get_vector_attribute( (job)arg1, (routine_type)arg2, (str)arg3) -> task : returns a (vector) attribute associated with this object (task based) C++ signature : saga::task get_vector_attribute(saga::job::job,saga::python::routine_type,std::string) |
list_attributes( (job)arg1) -> object : lists the keys of all attributes associated with this object (plain) C++ signature : std::vector<std::string, std::allocator<std::string> > list_attributes(saga::job::job) list_attributes( (job)arg1, (routine_type)arg2) -> task : lists the keys of all attributes associated with this object (task based) C++ signature : saga::task list_attributes(saga::job::job,saga::python::routine_type) |
migrate( (job)arg1, (description)arg2) -> None : migrate this job (plain) C++ signature : void migrate(saga::job::job,saga::job::description) migrate( (job)arg1, (routine_type)arg2, (description)arg3) -> task : migrate this job (task based) C++ signature : saga::task migrate(saga::job::job,saga::python::routine_type,saga::job::description) |
remove_attribute( (job)arg1, (str)arg2) -> None : removes an attribute associated with this object (plain) C++ signature : void remove_attribute(saga::job::job,std::string) remove_attribute( (job)arg1, (routine_type)arg2, (str)arg3) -> task : removes an attribute associated with this object (task based) C++ signature : saga::task remove_attribute(saga::job::job,saga::python::routine_type,std::string) |
resume( (job)arg1) -> None : resume this job (plain) C++ signature : void resume(saga::job::job) resume( (job)arg1, (routine_type)arg2) -> task : resume this job (task based) C++ signature : saga::task resume(saga::job::job,saga::python::routine_type) |
run( (job)arg1) -> None : run this job (plain) C++ signature : void run(saga::job::job) run( (job)arg1, (routine_type)arg2) -> task : run this job (task based) C++ signature : saga::task run(saga::job::job,saga::python::routine_type)
|
set_attribute( (job)arg1, (str)arg2, (str)arg3) -> None : sets a (scalar) attribute associated with this object (plain) C++ signature : void set_attribute(saga::job::job,std::string,std::string) set_attribute( (job)arg1, (routine_type)arg2, (str)arg3, (str)arg4) -> task : sets a (scalar) attribute associated with this object (task based) C++ signature : saga::task set_attribute(saga::job::job,saga::python::routine_type,std::string,std::string) |
set_vector_attribute( (job)arg1, (str)arg2, (object)arg3) -> None : sets a (vector) attribute associated with this object (plain) C++ signature : void set_vector_attribute(saga::job::job,std::string,std::vector<std::string, std::allocator<std::string> >) set_vector_attribute( (job)arg1, (routine_type)arg2, (str)arg3, (object)arg4) -> task : sets a (vector) attribute associated with this object (task based) C++ signature : saga::task set_vector_attribute(saga::job::job,saga::python::routine_type,std::string,std::vector<std::string, std::allocator<std::string> >) |
signal( (job)arg1, (int)arg2) -> None : send a signal to this job (plain) C++ signature : void signal(saga::job::job,int) signal( (job)arg1, (routine_type)arg2, (int)arg3) -> task : send a signal to this job (task based) C++ signature : saga::task signal(saga::job::job,saga::python::routine_type,int) |
suspend( (job)arg1) -> None : suspend this job (plain) C++ signature : void suspend(saga::job::job) suspend( (job)arg1, (routine_type)arg2) -> task : suspend this job (task based) C++ signature : saga::task suspend(saga::job::job,saga::python::routine_type) |
wait( (job)arg1 [, (float)arg2]) -> bool : wait for this job (plain) C++ signature : bool wait(saga::job::job [,double]) wait( (job)arg1, (routine_type)arg2 [, (float)arg3]) -> task : wait for this job (task based) C++ signature : saga::task wait(saga::job::job,saga::python::routine_type [,double])
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Oct 13 23:44:32 2011 | http://epydoc.sourceforge.net |