Exemplo n.º 1
0
        public bool Start()
        {
            _rabbitMqProxy.RpcService <RpcMsgModel>(msg =>
            {
                Console.WriteLine("接受信息:");
                Console.WriteLine(msg.ToJson());

                var input          = Input();
                msg.CreateDateTime = DateTime.Now;
                msg.Msg            = input;

                return(msg);
            });

            return(true);
        }