Exemplo n.º 1
0
 internal StreamHandle(
     LoopContext loop,
     uv_handle_type handleType)
     : base(loop, handleType)
 {
     this.Pipeline = new Pipeline(this);
 }
Exemplo n.º 2
0
        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);
        }
Exemplo n.º 3
0
        internal ScheduleHandle(LoopContext loop, uv_handle_type handleType)
        {
            Contract.Requires(loop != null);

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

            if (initialHandle == null)
            {
                throw new InvalidOperationException($"Initialize {handleType} for loop {loop.Handle} failed.");
            }

            this.handle     = initialHandle;
            this.HandleType = handleType;
        }
Exemplo n.º 4
0
 internal Timer(LoopContext loop)
     : base(loop, uv_handle_type.UV_TIMER)
 {
 }
Exemplo n.º 5
0
 internal WorkHandle(LoopContext loop, uv_handle_type handleType)
     : base(loop, handleType)
 {
 }
Exemplo n.º 6
0
 public Loop()
 {
     this.handle = new LoopContext();
 }
Exemplo n.º 7
0
 internal Idle(LoopContext loop)
     : base(loop, uv_handle_type.UV_IDLE)
 {
 }
Exemplo n.º 8
0
 internal Check(LoopContext loop)
     : base(loop, uv_handle_type.UV_CHECK)
 {
 }
Exemplo n.º 9
0
 internal Tcp(LoopContext loop)
     : base(loop, uv_handle_type.UV_TCP)
 {
 }
Exemplo n.º 10
0
 internal Prepare(LoopContext loop)
     : base(loop, uv_handle_type.UV_PREPARE)
 {
 }