Skip to content

Commit

Permalink
temporarily activate GOs necessary for persisted state loading
Browse files Browse the repository at this point in the history
  • Loading branch information
cryy22 committed Apr 30, 2024
1 parent 0ec1954 commit a2bdd46
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Runtime/Patterns/Coordination/Coordinator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ protected virtual IEnumerator Coordinate(TEvent eventEnum, TState state)
}
}

protected virtual void CoordinateWithoutWaiting(TEvent eventEnum, TState state)
{
Announcement?.Invoke(
sender: this,
e: new EventArgs(eventEnum: eventEnum, state: state, waitGroup: null)
);
}

public class EventArgs : CoordinationEventArgs<TEvent, TState>
{
public EventArgs(
Expand Down

0 comments on commit a2bdd46

Please sign in to comment.