ParallelSystem_T_.ParallelSystem(IParallelRunner,ISystem_T_[]).md
March 19, 2022 ยท View on GitHub
DefaultEcs
DefaultEcs.System.ParallelSystem<T>
ParallelSystem(IParallelRunner, ISystem[]) Constructor
Initialises a new instance of the ParallelSystem<T> class.
public ParallelSystem(DefaultEcs.Threading.IParallelRunner runner, params DefaultEcs.System.ISystem<T>[] systems);
Parameters
runner IParallelRunner
The IParallelRunner used to process the update in parallel if not null.
systems DefaultEcs.System.ISystem<T>[]
The ISystem<T> instances.
Exceptions
System.ArgumentNullException
runner is null.
System.ArgumentNullException
systems is null.