using System; using System.Threading.Tasks; namespace EcsRx.Threading { public class DefaultThreadHandler : IThreadHandler { public void For(int start, int end, Action process) => Parallel.For(start, end, process); } }