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
This package should be rebuilt from scratch around the mantle asynchronous framework. This would allow to work on each actor as if it were synchronous, thus creating a simple architecture.
Actor interface
interface Actor
{
publicfunction__invoke(Receive$receive): Receive;
}
Overhaul
This package should be rebuilt from scratch around the
mantle
asynchronous framework. This would allow to work on each actor as if it were synchronous, thus creating a simple architecture.Actor interface
This style allows for a more declarative approach and may help optimize the system by not calling the
callable
s when declared.The text was updated successfully, but these errors were encountered: