示例#1
0
        internal Loop(IntPtr handle, AbstractByteBufferAllocator allocator)
        {
            NativeHandle = handle;
            ByteBufferAllocator = allocator;

            callback = new AsyncCallback(this);
            async = new Async(this);

            // this fixes a strange bug, where you can't send async
            // stuff from other threads
            Sync(() => { });
            async.Send();
            RunOnce();

            // ignore our allocated resources
            async.Unref();
            callback.Unref();
        }
示例#2
0
        internal Loop(IntPtr handle, AbstractByteBufferAllocator allocator)
        {
            NativeHandle        = handle;
            ByteBufferAllocator = allocator;

            callback = new AsyncCallback(this);
            async    = new Async(this);

            // this fixes a strange bug, where you can't send async
            // stuff from other threads
            Sync(() => { });
            async.Send();
            RunOnce();

            // ignore our allocated resources
            async.Unref();
            callback.Unref();
        }
示例#3
0
 public Loop(AbstractByteBufferAllocator allocator)
     : this(uv_loop_new(), allocator)
 {
 }
示例#4
0
 public Loop(AbstractByteBufferAllocator allocator)
     : this(uv_loop_new(), allocator)
 {
 }