BindRecvChan binds a channel for receive operations from NATS. Deprecated: Encoded connections are no longer supported.
(subject string, channel any)
| 66 | // |
| 67 | // Deprecated: Encoded connections are no longer supported. |
| 68 | func (c *EncodedConn) BindRecvChan(subject string, channel any) (*Subscription, error) { |
| 69 | return c.bindRecvChan(subject, _EMPTY_, channel) |
| 70 | } |
| 71 | |
| 72 | // BindRecvQueueChan binds a channel for queue-based receive operations from NATS. |
| 73 | // |