Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 2.89 KB

ParallelSystem_T_.ParallelSystem(IParallelRunner,IEnumerable_ISystem_T__).md

File metadata and controls

31 lines (19 loc) · 2.89 KB

ParallelSystem(IParallelRunner, IEnumerable<ISystem>) Constructor

Initialises a new instance of the ParallelSystem<T> class.

public ParallelSystem(DefaultEcs.Threading.IParallelRunner runner, System.Collections.Generic.IEnumerable<DefaultEcs.System.ISystem<T>> systems);

Parameters

runner IParallelRunner

The IParallelRunner used to process the update in parallel if not null.

systems System.Collections.Generic.IEnumerable<DefaultEcs.System.ISystem<T>>

The ISystem<T> instances.

Exceptions

System.ArgumentNullException
runner is null.

System.ArgumentNullException
systems is null.