org.skyscreamer.nevado.jms.connector.SQSMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nevado-jms Show documentation
Show all versions of nevado-jms Show documentation
JMS Provider for Amazon's cloud services (uses SQS/SNS)
package org.skyscreamer.nevado.jms.connector;
/**
* Abstraction of an SQS message.
*
* @author Carter Page
*/
public interface SQSMessage {
String getReceiptHandle();
String getMessageBody();
String getMessageId();
}