Package saga :: Module _engine :: Class session
[frames] | no frames]

Class session

 object --+        
          |        
??.instance --+    
              |    
         object --+
                  |
                 session

saga::session type

Nested Classes
    Inherited from object
  object_type
Instance Methods
 
__init__(...)
__init__( (object)arg1) -> None :
 
add_context(...)
add_context( (session)arg1, (context)arg2) -> None : add a context to the list of contexts held by this session
 
close(...)
close( (session)arg1, (float)arg2) -> None : closes this session
 
list_contexts(...)
list_contexts( (session)arg1) -> object : list all contexts held by this session
 
remove_context(...)
remove_context( (session)arg1, (context)arg2) -> None : remove a context from the list of contexts held by this session

Inherited from unreachable.instance: __new__

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

    Inherited from 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 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 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*)

Overrides: object.__init__

add_context(...)

 

add_context( (session)arg1, (context)arg2) -> None :
    add a context to the list of contexts held by this session

    C++ signature :
        void add_context(saga::session {lvalue},saga::context)

close(...)

 

close( (session)arg1, (float)arg2) -> None :
    closes this session

    C++ signature :
        void close(saga::session {lvalue},double)

list_contexts(...)

 

list_contexts( (session)arg1) -> object :
    list all contexts held by this session

    C++ signature :
        std::vector<saga::context, std::allocator<saga::context> > list_contexts(saga::session {lvalue})

remove_context(...)

 

remove_context( (session)arg1, (context)arg2) -> None :
    remove a context from the list of contexts held by this session

    C++ signature :
        void remove_context(saga::session {lvalue},saga::context)