Base class for queues and shares which exchange data between tasks.
More...
|
| | __init__ (self, type_code, thread_protect=True, name=None) |
| | Create a base queue object when called by a child class initializer.
|
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.
◆ __init__()
| 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.
◆ _thread_protect
| task_share.BaseShare._thread_protect = thread_protect |
|
protected |
◆ _type_code
| task_share.BaseShare._type_code = type_code |
|
protected |
The documentation for this class was generated from the following file: