Esempio n. 1
0
 internal Listener(Loop loop, HandleType handleType, Func <IntPtr, IntPtr, int, int> constructor, int arg1)
     : this(loop, handleType)
 {
     Construct(constructor, arg1);
 }
Esempio n. 2
0
 internal Listener(Loop loop, HandleType type)
     : base(loop, type)
 {
     DefaultBacklog = 128;
 }
Esempio n. 3
0
 internal Listener(Loop loop, HandleType type, Func <IntPtr, IntPtr, int> constructor)
     : this(loop, type)
 {
     Construct(constructor);
 }