Assets.IPC.GetResponse C# (CSharp) Method

GetResponse() public method

public GetResponse ( string recipient, string messageHead, string messageBody, int>.Func callback ) : void
recipient string
messageHead string
messageBody string
callback int>.Func
return void
        public void GetResponse(string recipient, string messageHead, string messageBody, Func<string, int> callback)
        {
            SendMessage(recipient, messageHead, messageBody);
            responseMap[messageHead] = callback;
        }