KEngine.KAsync.Thread C# (CSharp) Method

Thread() public method

public Thread ( System.Action threadCalAction ) : KAsync
threadCalAction System.Action
return KAsync
        public KAsync Thread(Action threadCalAction)
        {
            return Coroutine(_Thread((thread, next) =>
            {
                threadCalAction();
                next();
            }));
        }

Same methods

KAsync::Thread ( AsyncThreadDelegate threadCalAction ) : KAsync
KAsync::Thread ( AsyncThreadDelegateFull threadCalAction, object param ) : KAsync