api.proto 844 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. syntax = "proto3";
  2. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  3. package main.archive.creative;
  4. option go_package = "v1";
  5. // Creative grpc
  6. service Creative {
  7. // FlowJudge 查询flow情况
  8. rpc FlowJudge(FlowRequest) returns(FlowResponse);
  9. // Sends a greeting
  10. rpc CheckTaskState (TaskRequest) returns (TaskReply) {}
  11. // Ping Service
  12. rpc Ping(Empty) returns(Empty);
  13. // Close Service
  14. rpc Close(Empty) returns(Empty);
  15. }
  16. message FlowRequest {
  17. int64 gid = 1;
  18. int64 business = 2;
  19. repeated int64 oids = 3;
  20. }
  21. message FlowResponse {
  22. repeated int64 oids = 1;
  23. }
  24. // The request message containing the user's name.
  25. message TaskRequest {
  26. int64 mid = 1;
  27. int64 task_id = 2;
  28. }
  29. // The response message containing the greetings
  30. message TaskReply {
  31. bool finish_state = 1;
  32. }
  33. message Empty{}