Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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));
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }