New Features
ForwardTo
on theReceiveContext
to forward message to a given actor when cluster mode is enabled. It passes a message from one actor to another actor by preserving the initial sender of the message.RemoteForward
on theReceiveContext
to pass a message from one actor to another actor on a remote machine by preserving the initial sender of the message.
Breaking Changes
- Fix bad api design of the remoting methods which necessitated a breaking changes in the accepted arguments of the following methods which now accepts a
from
alongside the existing argumentsRemoteTell
RemoteAsk
RemoteBatchAsk
RemoteBatchTell
Commits and PRs
- feat(enhancement): add ForwardTo and RemoteForward by @Tochemey in #538
- fix(design): fix bad design of remoting call by @Tochemey in #539
Full Changelog: v2.8.3...v.2.8.4