Nak negatively acknowledges a message. This tells the server to redeliver the message.
()
| 364 | // Nak negatively acknowledges a message. This tells the server to |
| 365 | // redeliver the message. |
| 366 | func (m *jetStreamMsg) Nak() error { |
| 367 | return m.ackReply(context.Background(), ackNak, false, ackOpts{}) |
| 368 | } |
| 369 | |
| 370 | // NakWithDelay negatively acknowledges a message. This tells the server |
| 371 | // to redeliver the message after the given delay. |