Beispiel #1
0
        public void Init(UvLoopHandle loop, Action <Action <IntPtr>, IntPtr> queueCloseHandle)
        {
            CreateHandle(
                loop.Libuv,
                loop.ThreadId,
                loop.Libuv.handle_size(LibuvFunctions.HandleType.TIMER),
                queueCloseHandle);

            _uv.timer_init(loop, this);
        }
Beispiel #2
0
        public void DangerousInit(UvLoopHandle loop)
        {
            var requestSize = loop.Libuv.req_size(LibuvFunctions.RequestType.WRITE);
            var bufferSize  = Marshal.SizeOf <LibuvFunctions.uv_buf_t>() * BUFFER_COUNT;

            CreateMemory(
                loop.Libuv,
                loop.ThreadId,
                requestSize + bufferSize);
            _bufs = handle + requestSize;
        }
Beispiel #3
0
        public void Init(UvLoopHandle loop, Action callback, Action <Action <IntPtr>, IntPtr> queueCloseHandle)
        {
            CreateMemory(
                loop.Libuv,
                loop.ThreadId,
                loop.Libuv.handle_size(LibuvFunctions.HandleType.ASYNC));

            _callback         = callback;
            _queueCloseHandle = queueCloseHandle;
            _uv.async_init(loop, this, _uv_async_cb);
        }
Beispiel #4
0
 public static extern void uv_stop(UvLoopHandle handle);
Beispiel #5
0
 public static extern int uv_run(UvLoopHandle handle,int mode);
Beispiel #6
0
 public static extern int uv_loop_init(UvLoopHandle handle);
Beispiel #7
0
 unsafe public long now(UvLoopHandle loop)
 {
     loop.Validate();
     return(_uv_now(loop));
 }
Beispiel #8
0
 unsafe public static extern int uv_timer_init(UvLoopHandle loop,UvTimerHandle handle);
Beispiel #9
0
 public static extern int uv_pipe_init(UvLoopHandle loop,UvPipeHandle handle,int ipc);
Beispiel #10
0
 public void tcp_init(UvLoopHandle loop, UvTcpHandle handle)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_tcp_init(loop, handle));
 }
Beispiel #11
0
 public void async_init(UvLoopHandle loop, UvAsyncHandle handle, uv_async_cb cb)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_async_init(loop, handle, cb));
 }
Beispiel #12
0
 public void stop(UvLoopHandle handle)
 {
     handle.Validate();
     _uv_stop(handle);
 }
Beispiel #13
0
 public void run(UvLoopHandle handle, int mode)
 {
     handle.Validate();
     ThrowIfErrored(_uv_run(handle, mode));
 }
Beispiel #14
0
 public void loop_close(UvLoopHandle handle)
 {
     handle.Validate(closed: true);
     ThrowIfErrored(_uv_loop_close(handle.InternalGetHandle()));
 }
Beispiel #15
0
 public void loop_init(UvLoopHandle handle)
 {
     ThrowIfErrored(_uv_loop_init(handle));
 }
Beispiel #16
0
 public static extern int uv_async_init(UvLoopHandle loop,UvAsyncHandle handle,uv_async_cb cb);
Beispiel #17
0
 public static extern int uv_tcp_init(UvLoopHandle loop,UvTcpHandle handle);
Beispiel #18
0
 public void pipe_init(UvLoopHandle loop, UvPipeHandle handle, bool ipc)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_pipe_init(loop, handle, ipc ? -1 : 0));
 }
Beispiel #19
0
 public static extern int uv_walk(UvLoopHandle loop,uv_walk_cb walk_cb,IntPtr arg);
Beispiel #20
0
 public void walk(UvLoopHandle loop, uv_walk_cb walk_cb, IntPtr arg)
 {
     loop.Validate();
     _uv_walk(loop, walk_cb, arg);
 }
Beispiel #21
0
 unsafe public static extern long uv_now(UvLoopHandle loop);
Beispiel #22
0
 unsafe public void timer_init(UvLoopHandle loop, UvTimerHandle handle)
 {
     loop.Validate();
     handle.Validate();
     ThrowIfErrored(_uv_timer_init(loop, handle));
 }