示例#1
0
 public static void ClientRPCQueue()
 {
     var rpcClient = new RpcQueue();
     var response = rpcClient.Call("rabbit.png");
     rpcClient.Close();
 }
示例#2
0
 public void ClientRPCQueue()
 {
     var rpcClient = new RpcQueue();
     rpcClient.Call("rabbit.png");
     rpcClient.Close();
 }