Example #1
0
 public static Expression <Func <IReceivedMessage <MessageExpression>, IWorkerNotification, object> > CreateRpcCompiled(
     Guid id, int runTime)
 {
     return((message, workerNotification) => StandardTesting.RunRpc(id, runTime));
 }
Example #2
0
 public static void ClearStandard(Guid id)
 {
     StandardTesting.Clear(id);
 }
Example #3
0
 public static Expression <Action <IReceivedMessage <MessageExpression>, IWorkerNotification> > CreateErrorCompiled(Guid id, int runTime)
 {
     return((message, workerNotification) => StandardTesting.Error());
 }