handlerCallInfo is a CallInfo implementation used for unary handlers.
| 84 | |
| 85 | // handlerCallInfo is a CallInfo implementation used for unary handlers. |
| 86 | type handlerCallInfo struct { |
| 87 | spec Spec |
| 88 | peer Peer |
| 89 | method string |
| 90 | requestHeader http.Header |
| 91 | responseHeader http.Header |
| 92 | responseTrailer http.Header |
| 93 | } |
| 94 | |
| 95 | func (c *handlerCallInfo) Spec() Spec { |
| 96 | return c.spec |
nothing calls this directly
no outgoing calls
no test coverage detected