Module EDSlot :: Class EDSlot
[hide private]
[frames] | no frames]

Class EDSlot

source code

       object --+    
                |    
EDObject.EDObject --+
                    |
                   EDSlot

This class is used for connecting one instance of a class to another.

Instance Methods [hide private]
 
__init__(self)
Constructor of the main pure virtual class.
source code
 
connect(self, _pyClassMethod)
Connects a signal between an object and a method in an other object.
source code
 
call(self, _tupleArguments=None)
Calls a slot with a list of arguments.
source code
 
executeMethod(self, _pyMethod, _tupleArguments=None) source code
 
getListMethod(self) source code
 
emptyListMethod(self) source code

Inherited from EDObject.EDObject: getClassName, getId, getRunTime, getSemaphoreValue, getTimeEnd, getTimeInit, locked, setTimeEnd, setTimeInit, synchronizeOff, synchronizeOn

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Constructor of the main pure virtual class.
This constructor implements:
- the creation of the semaphore
- definition of timer object (uninitialized as potentially not used)

Overrides: object.__init__

call(self, _tupleArguments=None)

source code 

Calls a slot with a list of arguments.

Parameters:
  • _tupleArguments (tuple) - arguments to be passed to the slot method