Package circuits :: Module core :: Class Signal

Class Signal

object --+    
         |    
     Event --+
             |
            Signal

Signal Event

This Event is sent when a Component receives a signal.

Instance Methods
 
__init__(self, signal, stack)
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__

Instance Variables

Inherited from Event: channel, name, target

Properties

Inherited from object: __class__

Method Details

__init__(self, signal, stack)
(Constructor)

 

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

Parameters:
  • signal - The signal number received.
  • stack - The interrupted stack frame.
Overrides: object.__init__