请各位大侠帮我解释一下:SocketAsyncEventArgsPool

boss_kg 2012-04-23 10:32:36
菜鸟我刚刚开始学些网络这方面的,在msdn中看到SocketAsyncEventArgs例子中的SocketAsyncEventArgsPool 不太明白这个对象是什么意思,也没有找到在哪定义了这个类,求各位大侠帮忙解释一下。
非常感谢!
...全文
322 5 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
心如止水521 2013-08-13
  • 打赏
  • 举报
回复
对这个问题也是不明白,看了上面的回复才知道。原来这是自己写的一个类
boss_kg 2012-05-15
  • 打赏
  • 举报
回复
感谢各位了。!
马少华 2012-05-11
  • 打赏
  • 举报
回复
是的,这个类是自己写的。
boss_kg 2012-04-23
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 的回复:]

看SocketAsyncEventArgs 构造函数的帮助,代码如下
C# code


// Represents a collection of reusable SocketAsyncEventArgs objects.
class SocketAsyncEventArgsPool
{
Stack<SocketAsyncEventArgs> m_pool;

// ……
[/Quote]

你的意思是说这个是自己写的不是系统自带的吗!
bdmh 2012-04-23
  • 打赏
  • 举报
回复
看SocketAsyncEventArgs 构造函数的帮助,代码如下


// Represents a collection of reusable SocketAsyncEventArgs objects.
class SocketAsyncEventArgsPool
{
Stack<SocketAsyncEventArgs> m_pool;

// Initializes the object pool to the specified size
//
// The "capacity" parameter is the maximum number of
// SocketAsyncEventArgs objects the pool can hold
public SocketAsyncEventArgsPool(int capacity)
{
m_pool = new Stack<SocketAsyncEventArgs>(capacity);
}

// Add a SocketAsyncEventArg instance to the pool
//
//The "item" parameter is the SocketAsyncEventArgs instance
// to add to the pool
public void Push(SocketAsyncEventArgs item)
{
if (item == null) { throw new ArgumentNullException("Items added to a SocketAsyncEventArgsPool cannot be null"); }
lock (m_pool)
{
m_pool.Push(item);
}
}

// Removes a SocketAsyncEventArgs instance from the pool
// and returns the object removed from the pool
public SocketAsyncEventArgs Pop()
{
lock (m_pool)
{
return m_pool.Pop();
}
}

// The number of SocketAsyncEventArgs instances in the pool
public int Count
{
get { return m_pool.Count; }
}

}

111,097

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • AIGC Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧