Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

21 Zeilen
601 B

  1. syntax = "proto3";
  2. package JT808.GrpcDashbord.AtomicCounterGrpcService;
  3. import "ResultReply.proto";
  4. import "EmptyRequest.proto";
  5. service AtomicCounterService{
  6. rpc GetTcpAtomicCounter(JT808.GrpcDashbord.ServiceGrpcBase.EmptyRequest) returns (AtomicCounterReply){}
  7. rpc GetUdpAtomicCounter(JT808.GrpcDashbord.ServiceGrpcBase.EmptyRequest) returns (AtomicCounterReply){}
  8. }
  9. message AtomicCounterReply{
  10. AtomicCounterInfo AtomicCounterInfo = 1;
  11. JT808.GrpcDashbord.ServiceGrpcBase.ResultReply ResultReply = 2;
  12. }
  13. message AtomicCounterInfo{
  14. int32 MsgSuccessCount = 1;
  15. int32 MsgFailCount = 2;
  16. }