|
ME 405 Romi
|
Base class for queues and shares which exchange data between tasks. More...

Public Member Functions | |
| __init__ (self, type_code, thread_protect=True, name=None) | |
| Create a base queue object when called by a child class initializer. | |
Protected Attributes | |
| _type_code = type_code | |
| _thread_protect = thread_protect | |
Base class for queues and shares which exchange data between tasks.
One should never create an object from this class; it doesn't do anything useful. It exists to implement things which are common between its child classes Queue and Share.
Definition at line 56 of file task_share.py.
| task_share.BaseShare.__init__ | ( | self, | |
| type_code, | |||
| thread_protect = True, | |||
| name = None ) |
Create a base queue object when called by a child class initializer.
This method creates the things which queues and shares have in common.
Definition at line 61 of file task_share.py.
|
protected |
Definition at line 63 of file task_share.py.
|
protected |
Definition at line 62 of file task_share.py.