Helper class for managing asynchronous operations in actors. More...
#include <actor.hpp>
Public Member Functions | |
TAsync (TActorSystem *actorSystem, TLocalActorId actorId) | |
void | Commit (TFuture< void > &&future) |
Helper class for managing asynchronous operations in actors.
TAsync allows actors to start asynchronous operations that will continue running even after the actor's Receive method returns. This is essential for non-blocking actor implementations.