ALE.Promise.PendThen C# (CSharp) Method

PendThen() private method

private PendThen ( object result ) : void
result object
return void
        internal void PendThen(object result)
        {
            foreach (var thenCallback in ThenCallbacks)
            {
                var callback = thenCallback;
                EventLoop.Pend(() => callback(result));
            }
        }