|
__init__(self,
name="a_SimEvent")
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature
|
|
signal(self,
param=None)
Produces a signal to self; Fires this event (makes it occur).
|
|
_wait(self,
par)
Consumes a signal if it has occurred, otherwise process 'proc'
waits for this event.
|
|
_waitOR(self,
par)
Handles waiting for an OR of events in a tuple/list.
|
|
_queue(self,
par)
Consumes a signal if it has occurred, otherwise process 'proc'
queues for this event.
|
|
_queueOR(self,
par)
Handles queueing for an OR of events in a tuple/list.
|
|
Inherited from Lister.Lister:
__repr__,
__str__,
attrnames
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__setattr__
|