Package circuits :: Package core :: Class Stopped

Class Stopped

object --+    
         |    
     Event --+
             |
            Stopped

Stopped Event

This Event is sent when a Component has stopped running.

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

Inherited from Event: __eq__, __getitem__, __repr__

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

Class Variables

Inherited from Event: target

Instance Variables

Inherited from Event: channel, name

Properties

Inherited from object: __class__

Method Details

__init__(self, component)
(Constructor)

 

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

Parameters:
  • component (Component or Manager) - The component that has stopped
Overrides: object.__init__