|
|
|
|
|
|
self._queue: queue.Queue = queue.Queue(maxsize=maxlen) |
|
|
|
self._behavior_id = behavior_id |
|
|
|
|
|
|
|
@property |
|
|
|
Returns the maximum length of the queue. |
|
|
|
The maximum length of the queue. |
|
|
|
@property |
|
|
|
Returns the Behavior ID of this queue. |
|
|
|
The Behavior ID of this queue. |
|
|
|
:return: Behavior ID associated with the queue. |
|
|
|
""" |
|
|
|
return self._behavior_id |
|
|
|