예제 #1
0
 /// <summary>
 /// Schedule a block to be executed on the UI thread. Useful if you need to execute
 /// need view logic before all currently queued view updates have completed.
 /// </summary>
 /// <param name="block">The UI block.</param>
 public void PrependUIBlock(IUIBlock block)
 {
     _uiImplementation.PrependUIBlock(block);
 }