Evgeny Minkevich
Evgeny Minkevich

Reputation: 2429

Google PubSub : Explicit NACK with pull?

Is there a way to explicitly nack a message with PULL subscriber and not to wait until the timeout deadline?

My impression is that such functionality does not exist and the only supported model with PULL subscriber is the implicit nack - a timeout.

Upvotes: 0

Views: 871

Answers (1)

Emilio Schapira
Emilio Schapira

Reputation: 324

You can simply call ModifyAckDeadline and set the new deadline to zero.

Upvotes: 1

Related Questions