Package circuits :: Package core :: Module workers :: Class Process

Class Process

object --+        
         |        
   Manager --+    
             |    
 BaseComponent --+
                 |
                Process

Instance Methods
 
__init__(self, *args, **kwargs)
initializes x; see x.__class__.__doc__ for signature
 
isAlive(self)
 
poll(self, wait=1e-05)
 
run(self)
 
start(self)
 
stop(self)

Inherited from BaseComponent: __repr__, register, unregister

Inherited from Manager: __add__, __iadd__, __isub__, __len__, __sub__, flush, join, push, send

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

Static Methods

Inherited from BaseComponent: __new__

Instance Variables

Inherited from BaseComponent: channel

Inherited from Manager: manager

Properties

Inherited from Manager: name, running, state

Inherited from object: __class__

Method Details

__init__(self, *args, **kwargs)
(Constructor)

 

initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

run(self)

 
Overrides: Manager.run

start(self)

 
Overrides: Manager.start

stop(self)

 
Overrides: Manager.stop