Example #1
0
 public static Task <T> AskEx <T>(this ICanTell self, Func <IActorRef, object> messageFactory, TimeSpan?timeout = null)
 {
     return(self.AskEx <T>(messageFactory, timeout, CancellationToken.None));
 }
Example #2
0
 public static Task <T> AskEx <T>(this ICanTell self, Func <IActorRef, object> messageFactory, CancellationToken cancellationToken)
 {
     return(self.AskEx <T>(messageFactory, null, cancellationToken));
 }
Example #3
0
 public static Task <object> AskEx(this ICanTell self, Func <IActorRef, object> messageFactory, TimeSpan?timeout, CancellationToken cancellationToken)
 {
     return(self.AskEx <object>(messageFactory, timeout, cancellationToken));
 }