-
Notifications
You must be signed in to change notification settings - Fork 2
ISystemGroup
Martin Evans edited this page Aug 1, 2024
·
1 revision
A "System Group" is a system which contains other systems. Custom system groups can be implemented by implementing ISystemGroup<TData> or BaseSystemGroup<TData>.
There are some standard implementations:
-
SystemGroupa basic system group that acceps a list of systems in the constructor. -
DynamicSystemGroupa basic system group that can have systems added after construction. -
ParallelSystemGroupexecutes all systems in each phase (BeforeUpdate,UpdateandAfterUpdate) in parallel. There is no automatic safety!