예제 #1
0
파일: UvIdle.cs 프로젝트: codecopy/NLibuv
 /// <summary>
 /// Starts the handle with the callback specified in the constructor.
 /// </summary>
 public void Start()
 {
     this.EnsureCallingThread();
     Libuv.EnsureSuccess(Libuv.uv_idle_start(this, _UvIdleCallback));
 }