- java.lang.Object
-
- com.logicommerce.sdk.models.queues.QueueMessage
-
- Direct Known Subclasses:
FreeLargeQueueMessage,FreeQueueMessage,OrderQueueMessage,UserQueueMessage
public abstract class QueueMessage extends Object
Interface for queue messages- Since:
- 1.2.0
- Author:
- LogiCommerce
-
-
Constructor Summary
Constructors Constructor Description QueueMessage(String action, Set<Attribute> attributes, Settings settings)QueueMessage constructor
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description StringgetAction()Returns the action of the message that will be used on the plugin service like OrderQueueService, FreeQueueService, etc.Set<Attribute>getAttributes()Returns the attributes of the messageSettingsgetSettings()Returns the settings of the messageabstract QueueMessageTypegetType()Returns the type of the message
-
-
-
Method Detail
-
getType
public abstract QueueMessageType getType()
Returns the type of the message- Returns:
- a
QueueMessageTypeobject
-
getAction
public String getAction()
Returns the action of the message that will be used on the plugin service like OrderQueueService, FreeQueueService, etc.- Returns:
- a
Stringobject
-
-