-
Notifications
You must be signed in to change notification settings - Fork 0
995faf4a 62c0 a930 754a 6e0d9074c89d
Axel Kesseler edited this page May 11, 2021
·
3 revisions
The ObservableQueue(TItem) generic type exposes the following members.
Name | Description | |
---|---|---|
Clear | Removes all items from the queue. | |
Dequeue | Removes an item from the top of the queue and returns it. | |
DequeueAll | Removes all items from the queue and returns them. | |
Enqueue | Adds provided item at the end of the queue. | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | The class destructor. (Overrides Object.Finalize().) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Peek | Returns the item at the beginning of the queue but without removing it. | |
RaiseDequeued | Raises the event Dequeued. | |
RaiseEnqueued | Raises the event Enqueued. | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
Trim | Sets the capacity to the actual number of queued items. |
ObservableQueue(TItem) Class
Plexdata.LogWriter.Queuing Namespace