ALE.Promise.PendThen C# (CSharp) Méthode

PendThen() private méthode

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