Universe.Modules.Scripting.RPCRequestInfo.SetProcessed C# (CSharp) Method

SetProcessed() public method

public SetProcessed ( bool processed ) : void
processed bool
return void
        public void SetProcessed(bool processed)
        {
            m_processed = processed;
        }

Usage Example

Example #1
0
        /**********************************************
         * Remote Data Reply
         *
         * Response to RPC message
         *
         *********************************************/

        public void RemoteDataReply(string channel, string message_id, string sdata, int idata)
        {
            UUID message_key = new UUID(message_id);
            UUID channel_key = new UUID(channel);

            RPCRequestInfo rpcInfo = null;

            if (message_key == UUID.Zero)
            {
                foreach (
                    RPCRequestInfo oneRpcInfo in
                    m_rpcPendingResponses.Values.Where(oneRpcInfo => oneRpcInfo.GetChannelKey() == channel_key))
                {
                    rpcInfo = oneRpcInfo;
                }
            }
            else
            {
                m_rpcPendingResponses.TryGetValue(message_key, out rpcInfo);
            }

            if (rpcInfo != null)
            {
                rpcInfo.SetStrRetval(sdata);
                rpcInfo.SetIntRetval(idata);
                rpcInfo.SetProcessed(true);
                m_rpcPendingResponses.Remove(message_key);

                //Make sure that the cmd handler thread is running
                m_scriptModule.PokeThreads(rpcInfo.GetItemID());
            }
            else
            {
                MainConsole.Instance.Warn("[XMLRPC]: Channel or message_id not found");
            }
        }