InProgress tells the server that this message is being worked on. It resets the redelivery timer on the server.
()
| 376 | // InProgress tells the server that this message is being worked on. It |
| 377 | // resets the redelivery timer on the server. |
| 378 | func (m *jetStreamMsg) InProgress() error { |
| 379 | return m.ackReply(context.Background(), ackProgress, false, ackOpts{}) |
| 380 | } |
| 381 | |
| 382 | // Term tells the server to not redeliver this message, regardless of |
| 383 | // the value of MaxDeliver. |