Interface IDispatchQueue<T>
A dispatch queue interface.
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public interface IDispatchQueue<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
QueueCount
Gets the number of items in the queue.
Declaration
long QueueCount { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Methods
Destroy()
Destroys the queue.
Declaration
void Destroy()
Enqueue(T)
Enqueues an item for processing.
Declaration
void Enqueue(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The item. |