rabbitmq rpc 消息格式及调用封装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
433 B

  1. syntax = "proto3";
  2. package rabbitmqrpc;
  3. // 配置信息请求结构
  4. message Request {
  5. string data = 1;
  6. string time = 2;
  7. string sign = 3;
  8. }
  9. // 配置信息响应结构
  10. message Response {
  11. string data = 1;
  12. string time = 2;
  13. string sign = 3;
  14. }
  15. // rpc方法
  16. service RabbitmqService {
  17. rpc send (Request) returns (Response); // 发送消息
  18. rpc sendDelay (Request) returns (Response); // 发送延迟消息
  19. }