ACR_ServerCommunicator.GameWorldManager.SignalQueryThreadAction C# (CSharp) Method

SignalQueryThreadAction() public method

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.
return void
        public void SignalQueryThreadAction(QueryThreadAction Action)
        {
            lock (QueryThreadActionQueue)
            {
                QueryThreadActionQueue.Enqueue(Action);
            }
        }