123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- syntax = "proto3";
- package ET;
- message ObjectQueryRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- int64 InstanceId = 3;
- }
- message M2A_Reload
- {
- int32 RpcId = 1;
- }
- message A2M_Reload
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message G2G_LockRequest
- {
- int32 RpcId = 1;
- int64 Id = 2;
- string Address = 3;
- }
- message G2G_LockResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message G2G_LockReleaseRequest
- {
- int32 RpcId = 1;
- int64 Id = 2;
- string Address = 3;
- }
- message G2G_LockReleaseResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message ObjectAddRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- int64 InstanceId = 3;
- }
- message ObjectAddResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message ObjectLockRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- int64 InstanceId = 3;
- int32 Time = 4;
- }
- message ObjectLockResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message ObjectUnLockRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- int64 OldInstanceId = 3;
- int64 InstanceId = 4;
- }
- message ObjectUnLockResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message ObjectRemoveRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- }
- message ObjectRemoveResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message ObjectGetRequest
- {
- int32 RpcId = 1;
- int64 Key = 2;
- }
- message ObjectGetResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 InstanceId = 4;
- }
- message R2G_GetLoginKey
- {
- int32 RpcId = 1;
- string Account = 2;
- }
- message G2R_GetLoginKey
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 Key = 4;
- int64 GameId = 5;
- }
- message ObjectQueryResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- bytes Entity = 4;
- }
|