Closer handle client close.
| 89 | |
| 90 | // Closer handle client close. |
| 91 | type Closer interface { |
| 92 | // CloseSend closes the send direction of the stream. |
| 93 | CloseSend() error |
| 94 | } |
| 95 | |
| 96 | // Option used by the Client. |
| 97 | type Option func(*Options) |
no outgoing calls
no test coverage detected
searching dependent graphs…