Esempio n. 1
0
 internal static extern int uv_run(IntPtr handle, Uv_run_mode mode);
Esempio n. 2
0
 /// <summary>
 /// Runs the loop with the given mode. If no parameter is given, it will
 /// run in default mode.
 /// </summary>
 /// <param name="mode">The mode to run the loop in.</param>
 internal void Run(Uv_run_mode mode = Uv_run_mode.UV_RUN_DEFAULT)
 {
     IsAllocated();
     Native.uv_run(LoopPointer, mode);
 }