errStreamingClientConn is a sentinel error implementation of StreamingClientConn.
| 387 | |
| 388 | // errStreamingClientConn is a sentinel error implementation of StreamingClientConn. |
| 389 | type errStreamingClientConn struct { |
| 390 | err error |
| 391 | } |
| 392 | |
| 393 | func (c *errStreamingClientConn) Receive(msg any) error { |
| 394 | return c.err |
nothing calls this directly
no outgoing calls
no test coverage detected