Package circuits :: Package core :: Class Started

Class Started

object --+    
         |    
     Event --+
             |
            Started

Started Event

This Event is sent when a Component has started running.

Instance Methods
 
__init__(self, component, mode)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Inherited from Event: __eq__, __getitem__, __repr__

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables

Inherited from Event: target

Instance Variables

Inherited from Event: channel, name

Properties

Inherited from object: __class__

Method Details

__init__(self, component, mode)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Parameters:
  • component (Component or Manager) - The component that was started
  • mode - The mode in which the Component was started, P (Process), T (Thread) or None (Main Thread / Main Process).
Overrides: object.__init__