I have long poll setup (with the Amazon SQS client lib) to pull messages as they come in, but some messages don't need to be read and deleted by this host, so they are skipped. I was wondering if there is a way to tell my next long poll request to skip those excluded messages?
My end goal is to have a long poll setup to process messages from a queue without executing the completion block for certain excluded messages. Is there a better methodology I should be using?