56 lines
1.2 KiB
C#
56 lines
1.2 KiB
C#
namespace NoSugarNet.Adapter
|
|
{
|
|
public class IdxWithMsg
|
|
{
|
|
public byte Idx;
|
|
public byte[] data;
|
|
}
|
|
|
|
public class LocalMsgQueuePool
|
|
{
|
|
public static LocalMsgQueuePool _localMsgPool = new LocalMsgQueuePool(1000);
|
|
|
|
Queue<IdxWithMsg> msg_pool;
|
|
|
|
public LocalMsgQueuePool(int capacity)
|
|
{
|
|
msg_pool = new Queue<IdxWithMsg>(capacity);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 向 Queue 的末尾添加一个对象。
|
|
/// </summary>
|
|
/// <param name="item"></param>
|
|
public void Enqueue(IdxWithMsg item)
|
|
{
|
|
lock (msg_pool)
|
|
{
|
|
item.Idx = 0;
|
|
item.data = null;
|
|
msg_pool.Enqueue(item);
|
|
}
|
|
}
|
|
|
|
//移除并返回在 Queue 的开头的对象。
|
|
public IdxWithMsg Dequeue()
|
|
{
|
|
lock (msg_pool)
|
|
{
|
|
if(msg_pool.Count > 0)
|
|
return msg_pool.Dequeue();
|
|
return new IdxWithMsg();
|
|
}
|
|
}
|
|
|
|
public int Count
|
|
{
|
|
get { return msg_pool.Count; }
|
|
}
|
|
|
|
public void Clear()
|
|
{
|
|
msg_pool.Clear();
|
|
}
|
|
}
|
|
}
|