Пример #1
0
 internal Listener(Loop loop, HandleType handleType, Func <IntPtr, IntPtr, int, int> constructor, int arg1)
     : this(loop, handleType)
 {
     Construct(constructor, arg1);
 }
Пример #2
0
 internal Listener(Loop loop, HandleType type)
     : base(loop, type)
 {
     DefaultBacklog = 128;
 }
Пример #3
0
 internal Listener(Loop loop, HandleType type, Func <IntPtr, IntPtr, int> constructor)
     : this(loop, type)
 {
     Construct(constructor);
 }