BindRecvQueueChan binds a channel for queue-based receive operations from NATS. Deprecated: Encoded connections are no longer supported.
(subject, queue string, channel any)
| 73 | // |
| 74 | // Deprecated: Encoded connections are no longer supported. |
| 75 | func (c *EncodedConn) BindRecvQueueChan(subject, queue string, channel any) (*Subscription, error) { |
| 76 | return c.bindRecvChan(subject, queue, channel) |
| 77 | } |
| 78 | |
| 79 | // Internal function to bind receive operations for a channel. |
| 80 | func (c *EncodedConn) bindRecvChan(subject, queue string, channel any) (*Subscription, error) { |