flowchartsman edited a comment on issue #468:
URL: 
https://github.com/apache/pulsar-client-go/issues/468#issuecomment-1011537633


   `HasNext()` gives you the ability to bail when you're caught up. If you just 
loop on `reader.Next(ctx)`, you should get the behavior you desire: the client 
should block until it gets new messages and then process them. You can then 
choose to bail on whatever property you want. That said, reading until 
`HasNext()` is false, will also get you to the "end", though it sounds like 
what you're doing isn't looking for the last message, but a "last" message of 
your own designation, in which case your ending condition is up to you: you can 
inspect the messages, bail after a certain amount of time waiting (with a ctx 
timeout) or whatever you like.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to