Term tells the server to not redeliver this message, regardless of the value of nats.MaxDeliver.
(opts ...AckOpt)
| 3684 | // Term tells the server to not redeliver this message, regardless of the value |
| 3685 | // of nats.MaxDeliver. |
| 3686 | func (m *Msg) Term(opts ...AckOpt) error { |
| 3687 | return m.ackReply(ackTerm, false, opts...) |
| 3688 | } |
| 3689 | |
| 3690 | // InProgress tells the server that this message is being worked on. It resets |
| 3691 | // the redelivery timer on the server. |