DungeonMasterEngine.GameSynchronizationContext.Post C# (CSharp) Method

Post() public method

public Post ( SendOrPostCallback d, object state ) : void
d SendOrPostCallback
state object
return void
        public override void Post(SendOrPostCallback d, object state)
        {
            var t = Tuple.Create(d, state);
            lock (executionQueue)
                executionQueue.Enqueue(t);
        }