| 9 | ) |
| 10 | |
| 11 | type rpcRequest struct { |
| 12 | socket transport.Socket |
| 13 | codec codec.Codec |
| 14 | rawBody interface{} |
| 15 | header map[string]string |
| 16 | service string |
| 17 | method string |
| 18 | endpoint string |
| 19 | contentType string |
| 20 | body []byte |
| 21 | stream bool |
| 22 | first bool |
| 23 | } |
| 24 | |
| 25 | type rpcMessage struct { |
| 26 | payload interface{} |
nothing calls this directly
no outgoing calls
no test coverage detected