InnerMessage_S_20001.proto 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. syntax = "proto3";
  2. // using
  3. package ET;
  4. //ResponseType ObjectQueryResponse
  5. message ObjectQueryRequest // IActorRequest
  6. {
  7. int32 RpcId = 1;
  8. int64 Key = 2;
  9. int64 InstanceId = 3;
  10. }
  11. //ResponseType A2M_Reload
  12. message M2A_Reload // IActorRequest
  13. {
  14. int32 RpcId = 1;
  15. }
  16. message A2M_Reload // IActorResponse
  17. {
  18. int32 RpcId = 1;
  19. int32 Error = 2;
  20. string Message = 3;
  21. }
  22. //ResponseType G2G_LockResponse
  23. message G2G_LockRequest // IActorRequest
  24. {
  25. int32 RpcId = 1;
  26. int64 Id = 2;
  27. string Address = 3;
  28. }
  29. message G2G_LockResponse // IActorResponse
  30. {
  31. int32 RpcId = 1;
  32. int32 Error = 2;
  33. string Message = 3;
  34. }
  35. //ResponseType G2G_LockReleaseResponse
  36. message G2G_LockReleaseRequest // IActorRequest
  37. {
  38. int32 RpcId = 1;
  39. int64 Id = 2;
  40. string Address = 3;
  41. }
  42. message G2G_LockReleaseResponse // IActorResponse
  43. {
  44. int32 RpcId = 1;
  45. int32 Error = 2;
  46. string Message = 3;
  47. }
  48. //ResponseType ObjectAddResponse
  49. message ObjectAddRequest // IActorRequest
  50. {
  51. int32 RpcId = 1;
  52. int64 Key = 2;
  53. int64 InstanceId = 3;
  54. }
  55. message ObjectAddResponse // IActorResponse
  56. {
  57. int32 RpcId = 1;
  58. int32 Error = 2;
  59. string Message = 3;
  60. }
  61. //ResponseType ObjectLockResponse
  62. message ObjectLockRequest // IActorRequest
  63. {
  64. int32 RpcId = 1;
  65. int64 Key = 2;
  66. int64 InstanceId = 3;
  67. int32 Time = 4;
  68. }
  69. message ObjectLockResponse // IActorResponse
  70. {
  71. int32 RpcId = 1;
  72. int32 Error = 2;
  73. string Message = 3;
  74. }
  75. //ResponseType ObjectUnLockResponse
  76. message ObjectUnLockRequest // IActorRequest
  77. {
  78. int32 RpcId = 1;
  79. int64 Key = 2;
  80. int64 OldInstanceId = 3;
  81. int64 InstanceId = 4;
  82. }
  83. message ObjectUnLockResponse // IActorResponse
  84. {
  85. int32 RpcId = 1;
  86. int32 Error = 2;
  87. string Message = 3;
  88. }
  89. //ResponseType ObjectRemoveResponse
  90. message ObjectRemoveRequest // IActorRequest
  91. {
  92. int32 RpcId = 1;
  93. int64 Key = 2;
  94. }
  95. message ObjectRemoveResponse // IActorResponse
  96. {
  97. int32 RpcId = 1;
  98. int32 Error = 2;
  99. string Message = 3;
  100. }
  101. //ResponseType ObjectGetResponse
  102. message ObjectGetRequest // IActorRequest
  103. {
  104. int32 RpcId = 1;
  105. int64 Key = 2;
  106. }
  107. message ObjectGetResponse // IActorResponse
  108. {
  109. int32 RpcId = 1;
  110. int32 Error = 2;
  111. string Message = 3;
  112. int64 InstanceId = 4;
  113. }
  114. //ResponseType G2R_GetLoginKey
  115. message R2G_GetLoginKey // IActorRequest
  116. {
  117. int32 RpcId = 1;
  118. string Account = 2;
  119. }
  120. message G2R_GetLoginKey // IActorResponse
  121. {
  122. int32 RpcId = 1;
  123. int32 Error = 2;
  124. string Message = 3;
  125. int64 Key = 4;
  126. int64 GameId = 5;
  127. }
  128. message ObjectQueryResponse // IActorResponse
  129. {
  130. int32 RpcId = 1;
  131. int32 Error = 2;
  132. string Message = 3;
  133. bytes Entity = 4;
  134. }