예제 #1
0
 internal ServerStream(
     LoopContext loop,
     uv_handle_type handleType,
     params object[] args)
     : base(loop, handleType, args)
 {
 }
예제 #2
0
 internal WorkHandle(
     LoopContext loop,
     uv_handle_type handleType,
     params object[] args)
     : base(loop, handleType, args)
 {
 }
예제 #3
0
파일: Udp.cs 프로젝트: wazazhang/NetUV
        internal Udp(LoopContext loop, PooledByteBufferAllocator allocator)
            : base(loop, uv_handle_type.UV_UDP)
        {
            Contract.Requires(allocator != null);

            this.allocator   = allocator;
            this.pendingRead = new PendingRead();
        }
예제 #4
0
 internal StreamHandle(
     LoopContext loop,
     uv_handle_type handleType,
     params object[] args)
     : base(loop, handleType, args)
 {
     this.pipeline = new Pipeline(this);
 }
예제 #5
0
파일: Udp.cs 프로젝트: doruu12/NetUV
        internal Udp(LoopContext loop, ByteBufferAllocator allocator)
            : base(loop, uv_handle_type.UV_UDP)
        {
            Contract.Requires(allocator != null);

            this.allocator   = allocator;
            this.bufferQueue = new BufferQueue();
        }
예제 #6
0
파일: Async.cs 프로젝트: wazazhang/NetUV
        internal Async(LoopContext loop, Action <Async> callback)
            : base(loop, uv_handle_type.UV_ASYNC)
        {
            Contract.Requires(callback != null);

            this.Callback       = state => callback.Invoke((Async)state);
            this.gate           = new Gate();
            this.closeScheduled = false;
        }
예제 #7
0
        internal ScheduleHandle(
            LoopContext loop,
            uv_handle_type handleType,
            object[] args = null)
        {
            Contract.Requires(loop != null);

            HandleContext initialHandle = NativeMethods.Initialize(loop.Handle, handleType, this, args);

            Debug.Assert(initialHandle != null);

            this.handle     = initialHandle;
            this.HandleType = handleType;
        }
예제 #8
0
파일: Udp.cs 프로젝트: doruu12/NetUV
 internal Udp(LoopContext loop)
     : this(loop, ByteBufferAllocator.Pooled)
 {
 }
예제 #9
0
 internal Pipe(LoopContext loop, bool ipc = false)
     : base(loop, uv_handle_type.UV_NAMED_PIPE, ipc)
 {
     this.ipc = ipc;
 }
예제 #10
0
파일: Signal.cs 프로젝트: wazazhang/NetUV
 internal Signal(LoopContext loop)
     : base(loop, uv_handle_type.UV_SIGNAL)
 {
 }
예제 #11
0
 internal FSPoll(LoopContext loop)
     : base(loop, uv_handle_type.UV_FS_POLL)
 {
 }
예제 #12
0
파일: Tty.cs 프로젝트: wazazhang/NetUV
 internal Tty(LoopContext loop, TtyType ttyType)
     : base(loop, uv_handle_type.UV_TTY, ttyType)
 {
     this.ttyType = ttyType;
 }
예제 #13
0
파일: Udp.cs 프로젝트: wazazhang/NetUV
 internal Udp(LoopContext loop)
     : this(loop, PooledByteBufferAllocator.Default)
 {
 }
예제 #14
0
 internal Poll(LoopContext loop, int fd)
     : base(loop, uv_handle_type.UV_POLL, new object[] { fd })
 {
 }
예제 #15
0
파일: FSEvent.cs 프로젝트: wazazhang/NetUV
 internal FSEvent(LoopContext loop)
     : base(loop, uv_handle_type.UV_FS_EVENT)
 {
 }
예제 #16
0
 internal Tcp(LoopContext loop)
     : base(loop, uv_handle_type.UV_TCP)
 {
 }
예제 #17
0
 internal Prepare(LoopContext loop)
     : base(loop, uv_handle_type.UV_PREPARE)
 {
 }
예제 #18
0
파일: Check.cs 프로젝트: PlumpMath/NetUV
 internal Check(LoopContext loop)
     : base(loop, uv_handle_type.UV_CHECK)
 {
 }
예제 #19
0
 internal Timer(LoopContext loop)
     : base(loop, uv_handle_type.UV_TIMER)
 {
 }
예제 #20
0
파일: Idle.cs 프로젝트: wazazhang/NetUV
 internal Idle(LoopContext loop)
     : base(loop, uv_handle_type.UV_IDLE)
 {
 }
예제 #21
0
 internal Poll(LoopContext loop, IntPtr handle)
     : base(loop, uv_handle_type.UV_POLL, new object[] { handle })
 {
 }
예제 #22
0
 public Loop()
 {
     this.handle = new LoopContext();
 }