QueueSubscribe creates a Subscription with a queue group. If no optional durable name nor binding options are specified, the queue name will be used as a durable name. See important note in Subscribe()
(subj, queue string, cb MsgHandler, opts ...SubOpt)
| 112 | // If no optional durable name nor binding options are specified, the queue name will be used as a durable name. |
| 113 | // See important note in Subscribe() |
| 114 | QueueSubscribe(subj, queue string, cb MsgHandler, opts ...SubOpt) (*Subscription, error) |
| 115 | |
| 116 | // QueueSubscribeSync creates a Subscription with a queue group that can be used to process messages synchronously. |
| 117 | // See important note in QueueSubscribe() |
no outgoing calls