AsyncProcessor.ProcessInternal C# (CSharp) Method

ProcessInternal() private method

private ProcessInternal ( IEnumerator process ) : IEnumerator
process IEnumerator
return IEnumerator
    IEnumerator ProcessInternal(IEnumerator process)
    {
        var data = new CoroutineInfo()
        {
            CoRoutine = new CoRoutine(process),
        };

        _newWorkers.Add(data);

        return WaitUntilFinished(data);
    }