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