Beispiel #1
0
 /// <summary>
 /// Post a task for delayed execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public void Post(CefThreadId threadId, long delayMs)
 {
     Cef.PostTask(threadId, this, delayMs);
 }
Beispiel #2
0
 /// <summary>
 /// Post a task for execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public void Post(CefThreadId threadId)
 {
     Cef.PostTask(threadId, this);
 }
Beispiel #3
0
 /// <summary>
 /// Post a task for delayed execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public static void Post(CefThreadId threadId, Action action, long delayMs)
 {
     Cef.PostTask(threadId, new CefActionTask(action), delayMs);
 }
Beispiel #4
0
 /// <summary>
 /// Post a task for execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public static void Post(CefThreadId threadId, Action action)
 {
     Cef.PostTask(threadId, new CefActionTask(action));
 }
Beispiel #5
0
 /// <summary>
 /// Post a task for delayed execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public static void Post(CefThreadId threadId, CefTask task, long delayMs)
 {
     Cef.PostTask(threadId, task, delayMs);
 }
Beispiel #6
0
 /// <summary>
 /// Post a task for execution on the specified thread.
 /// This function may be called on any thread.
 /// </summary>
 public static void Post(CefThreadId threadId, CefTask task)
 {
     Cef.PostTask(threadId, task);
 }