GstBase.DataQueue¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
Virtual Methods¶
- Inherited:
|
|
|
Properties¶
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r |
Current amount of data in the queue (bytes) |
||
r |
Current amount of data in the queue (in ns) |
||
r |
Current number of visible items in the queue |
Signals¶
- Inherited:
Name |
Short Description |
---|---|
Reports that the queue became empty (empty). |
|
Reports that the queue became full (full). |
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
object |
r |
the parent structure |
Class Details¶
- class GstBase.DataQueue(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
GstBase.DataQueue
is an object that handles threadsafe queueing of objects. It also provides size-related functionality. This object should be used for anyGst.Element
that wishes to provide some sort of queueing functionality.- do_empty() virtual¶
- do_full() virtual¶
Signal Details¶
- GstBase.DataQueue.signals.empty()¶
- Signal Name:
empty
- Flags:
Reports that the queue became empty (empty). A queue is empty if the total amount of visible items inside it (num-visible, time, size) is lower than the boundary values which can be set through the
GObject.Object
properties.
- GstBase.DataQueue.signals.full()¶
- Signal Name:
full
- Flags:
Reports that the queue became full (full). A queue is full if the total amount of data inside it (num-visible, time, size) is higher than the boundary values which can be set through the
GObject.Object
properties.
Property Details¶
- GstBase.DataQueue.props.current_level_bytes¶
-
Current amount of data in the queue (bytes)
- GstBase.DataQueue.props.current_level_time¶
-
Current amount of data in the queue (in ns)