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 Dec 7, 2018. It is now read-only.
Explain in the Command Model chapter how an Aggregate can be ended/closed/deleted.
Description in code about the AggregateLifecycle in code is:
/**
* Marks this aggregate as deleted, instructing a repository to remove that aggregate at an appropriate time.
* <p/>
* Note that different repository implementations may react differently to aggregates marked for deletion.
* Typically, Event Sourced Repositories will ignore the marking and expect deletion to be provided as part of Event
* information.
*/
public static void markDeleted() {
getInstance().doMarkDeleted();
}
The text was updated successfully, but these errors were encountered:
Explain in the Command Model chapter how an Aggregate can be ended/closed/deleted.
Description in code about the
AggregateLifecycle
in code is:The text was updated successfully, but these errors were encountered: