[rabbitmq-discuss] Sequential message processing guarantee

Yogesh Ketkar yogimogi at gmail.com
Sun Jan 22 18:31:03 GMT 2012


Is basicGet only way to guarantee sequential processing of the
messages on a queue?

while(true) {
	GetResponse res = channel.basicGet(QUEUE_NAME, false);
	if(res != null) {
		// process message
	}
}

regards, Yogesh


More information about the rabbitmq-discuss mailing list