IChannelT Interface | 
Namespace: Demo3D.EventQueue
public interface IChannel<T>
The IChannelT type exposes the following members.
| Name | Description | |
|---|---|---|
| Capacity | 
            The maximum number of elements that can be written to this channel before one must be read.
              | |
| Count | 
            How many elements are in the channel waiting to be read.
              | |
| IsEmpty | 
            Is the channel empty.
              | |
| IsFull | 
            Has the channel reached its capacity and is full.
              | |
| Items | 
            Items that are currently in the channel waiting to be read
              | 
| Name | Description | |
|---|---|---|
| Peek | 
            Peek at the next object from the channel.
              | |
| Read | 
            Read an object from the channel.
              | |
| Write | 
            Write an object to the channel
              |