Package saga :: Package job :: Module _job :: Class service
[frames] | no frames]

Class service

 object --+        
          |        
??.instance --+    
              |    
 _engine.object --+
                  |
                 service
Known Subclasses:

Nested Classes
    Inherited from _engine.object
  object_type
Instance Methods
 
__init__(...)
__init__( (object)arg1) -> None :
 
create_job(...)
create_job( (service)arg1, (description)arg2) -> job : create a new job using the given job description (plain)
 
get_job(...)
get_job( (service)arg1, (str)arg2) -> job : get the job given the job id maintained by this instance (plain)
 
get_self(...)
get_self( (service)arg1) -> self : get the job representing the running job instance (plain)
 
list(...)
list( (service)arg1) -> object : list the job id's of all jobs maintained by this instance (plain)
 
run_job(...)
run_job( (service)arg1, (str)arg2, (str)arg3) -> object : create and run a new job given the executable path and arguments (plain)
 
run_job_noio(...)
run_job_noio( (service)arg1, (str)arg2, (str)arg3) -> job : create and run a new job given the executable path and arguments (plain)

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

    Inherited from _engine.object
 
__reduce__(...)
helper for pickle
 
clone(...)
clone( (object)arg1) -> object : create a deep copy of the object
 
get_id(...)
get_id( (object)arg1) -> uuid : returns the id of this instance
 
get_object_type_name(...)
get_object_type_name( (object_type)arg1) -> str : return the name of a given object type
 
get_session(...)
get_session( (object)arg1) -> session : return the session associated with this object instance
 
get_type(...)
get_type( (object)arg1) -> object_type : returns the type of this instance
Class Variables
    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
  Task = saga._engine.object_type.Task
  TaskContainer = saga._engine.object_type.TaskContainer
  URL = saga._engine.object_type.URL
  __instance_size__ = 32
Properties

Inherited from object: __class__

    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

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

__init__( (object)arg1, (str)arg2) -> None :

    C++ signature :
        void __init__(_object*,char const*)

__init__( (object)arg1, (url)arg2) -> None :

    C++ signature :
        void __init__(_object*,saga::url)

__init__( (object)arg1, (session)arg2) -> None :

    C++ signature :
        void __init__(_object*,saga::session)

__init__( (object)arg1, (session)arg2, (url)arg3) -> None :

    C++ signature :
        void __init__(_object*,saga::session,saga::url)

Overrides: object.__init__

create_job(...)

 

create_job( (service)arg1, (description)arg2) -> job :
    create a new job using the given job description (plain)

    C++ signature :
        saga::job::job create_job(saga::job::service,saga::job::description)

create_job( (service)arg1, (routine_type)arg2, (description)arg3) -> task :
    create a new job using the given job description (task based)

    C++ signature :
        saga::task create_job(saga::job::service,saga::python::routine_type,saga::job::description)

get_job(...)

 

get_job( (service)arg1, (str)arg2) -> job :
    get the job given the job id maintained by this instance (plain)

    C++ signature :
        saga::job::job get_job(saga::job::service,std::string)

get_job( (service)arg1, (routine_type)arg2, (str)arg3) -> task :
    get the job given the job id maintained by this instance (task based)

    C++ signature :
        saga::task get_job(saga::job::service,saga::python::routine_type,std::string)

get_self(...)

 

get_self( (service)arg1) -> self :
    get the job representing the running job instance (plain)

    C++ signature :
        saga::job::self get_self(saga::job::service)

get_self( (service)arg1, (routine_type)arg2) -> task :
    get the job representing the running job instance (task based)

    C++ signature :
        saga::task get_self(saga::job::service,saga::python::routine_type)

list(...)

 

list( (service)arg1) -> object :
    list the job id's of all jobs maintained by this instance (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > list(saga::job::service)

list( (service)arg1, (routine_type)arg2) -> task :
    list the job id's of all jobs maintained by this instance (task based)

    C++ signature :
        saga::task list(saga::job::service,saga::python::routine_type)

run_job(...)

 

run_job( (service)arg1, (str)arg2, (str)arg3) -> object :
    create and run a new job given the executable path and arguments (plain)

    C++ signature :
        boost::python::api::object run_job(saga::job::service,std::string,std::string)

run_job( (job)arg1, (routine_type)arg2) -> task :
    create and run a new job given the executable path and arguments (task based)

    C++ signature :
        saga::task run_job(saga::job::job,saga::python::routine_type)

run_job_noio(...)

 

run_job_noio( (service)arg1, (str)arg2, (str)arg3) -> job :
    create and run a new job given the executable path and arguments (plain)

    C++ signature :
        saga::job::job run_job_noio(saga::job::service,std::string,std::string)

run_job_noio( (service)arg1, (routine_type)arg2, (str)arg3, (str)arg4) -> task :
    create and run a new job given the executable path and arguments (task based)

    C++ signature :
        saga::task run_job_noio(saga::job::service,saga::python::routine_type,std::string,std::string)