You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

rpc_message.go 147 B

5 years ago
12345678910
  1. package protocal
  2. type RpcMessage struct {
  3. Id int32
  4. MessageType byte
  5. Codec byte
  6. Compressor byte
  7. HeadMap map[string]string
  8. Body interface{}
  9. }

Go Implementation For Seata