RequestF.tars 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. module tars
  17. {
  18. //请求包体
  19. struct RequestPacket
  20. {
  21. 1 require short iVersion;
  22. 2 require byte cPacketType = 0;
  23. 3 require int iMessageType = 0;
  24. 4 require int iRequestId;
  25. 5 require string sServantName = "";
  26. 6 require string sFuncName = "";
  27. 7 require vector<byte> sBuffer;
  28. 8 require int iTimeout = 0;
  29. 9 require map<string, string> context;
  30. 10 require map<string, string> status;
  31. };
  32. //响应包体
  33. struct ResponsePacket
  34. {
  35. 1 require short iVersion;
  36. 2 require byte cPacketType = 0;
  37. 3 require int iRequestId;
  38. 4 require int iMessageType = 0;
  39. 5 require int iRet = 0;
  40. 6 require vector<byte> sBuffer;
  41. 7 require map<string, string> status;
  42. 8 optional string sResultDesc;
  43. 9 optional map<string, string> context;
  44. };
  45. };