Ejemplo n.º 1
0
 /// <summary>
 ///     Invoked by runtime to indicate that a statements's
 ///     filer and schedule processing is done, and now it's time to process join results.
 /// </summary>
 public void InternalDispatch()
 {
     OptionalDispatchable?.Execute();
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Invoked by runtime to indicate that a statements's
 ///     filer and schedule processing is done, and now it's time to process join results.
 /// </summary>
 public void InternalDispatch()
 {
     if (OptionalDispatchable != null) {
         OptionalDispatchable.Execute();
     }
 }