You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Scala, ask timeout can be set implicitly, while in C#/F# this is not possible, and therefore it may feel repetitive and not safe (when user decided not to set it at all, there is possibility to hang forever). The idea is to add HOCON config key for setting the default timeout on IActorRef.Ask method in case, when user didn't specified it explicitly.
Proposal is to create akka.actor.ask-timeout key with TimeSpan value (set to null by default to stay backward compatible). This setting should be applied to all IActorRef.Ask invocations without explicit timeouts. This should also be reflected in updated documentation.
The text was updated successfully, but these errors were encountered:
In Scala, ask timeout can be set implicitly, while in C#/F# this is not possible, and therefore it may feel repetitive and not safe (when user decided not to set it at all, there is possibility to hang forever). The idea is to add HOCON config key for setting the default timeout on
IActorRef.Ask
method in case, when user didn't specified it explicitly.Proposal is to create
akka.actor.ask-timeout
key with TimeSpan value (set to null by default to stay backward compatible). This setting should be applied to all IActorRef.Ask invocations without explicit timeouts. This should also be reflected in updated documentation.The text was updated successfully, but these errors were encountered: