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
{{ message }}
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
Event-sourcing abstractions distinguish command processing from event processing using different handlers for it. Hence, event-sourced actors should support both, behavior changes for command-handling and for event handling.
From an implementation perspective, two behavior stacks are needed, one for command handling, the other for event handling. The event-handling behavior stack however will not be stored with snapshots and it is the application's responsibility to restore the appropriate behavior during snapshot handling in onSnapshot.
The text was updated successfully, but these errors were encountered:
Event-sourcing abstractions distinguish command processing from event processing using different handlers for it. Hence, event-sourced actors should support both, behavior changes for command-handling and for event handling.
From an implementation perspective, two behavior stacks are needed, one for command handling, the other for event handling. The event-handling behavior stack however will not be stored with snapshots and it is the application's responsibility to restore the appropriate behavior during snapshot handling in
onSnapshot
.The text was updated successfully, but these errors were encountered: