ACR_ServerCommunicator.GameWorldManager.SignalQueryThreadAction C# (CSharp) 메소드

SignalQueryThreadAction() 공개 메소드

Signal a request to invoke an action in the context of the query thread. N.B. The routine should NOT be invoked with the world manager locked. Internal synchronization is provided.
public SignalQueryThreadAction ( QueryThreadAction Action ) : void
Action QueryThreadAction Supplies the action to enqueue to the query /// thread.
리턴 void
        public void SignalQueryThreadAction(QueryThreadAction Action)
        {
            lock (QueryThreadActionQueue)
            {
                QueryThreadActionQueue.Enqueue(Action);
            }
        }