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
/// Governs the relationship of an event to a resulting projection.pubenumParentEventRelationship{/// This projector must succeed, for the parent event to be persisted.Blocking,/// This projector is allowed to fail, and doesn't block persisting the parent event.Fallible}
It seems to me that ParentEventRelationship is a bit a too long name. What do you think about renaming it in Persistence? This seems to me that is moreover more consistent with PgStore::persist function
/// Specify the persistence for that projectorpubenumPersistence{/// This projector must succeed, for the event to be persisted.Mandatory,/// This projector is allowed to fail, and doesn't block persisting the event.Fallible,}
Or ProjectorPersistence too. Anyway no strong opinions on this topic
This discussion is related to this PR
The text was updated successfully, but these errors were encountered: