Interface Queue.UpdateStages.WithExpressMessage
-
- All Known Subinterfaces:
Queue.Update
- Enclosing interface:
- Queue.UpdateStages
public static interface Queue.UpdateStages.WithExpressMessageThe stage of the queue definition allowing to mark it as either holding regular or express messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Queue.UpdatewithExpressMessage()Specifies that messages in this queue are express hence they can be cached in memory for some time before storing it in messaging store.Queue.UpdatewithoutExpressMessage()Specifies that messages in this queue are not express hence they should be cached in memory.
-
-
-
Method Detail
-
withExpressMessage
Queue.Update withExpressMessage()
Specifies that messages in this queue are express hence they can be cached in memory for some time before storing it in messaging store.- Returns:
- the next stage of queue update
-
withoutExpressMessage
Queue.Update withoutExpressMessage()
Specifies that messages in this queue are not express hence they should be cached in memory.- Returns:
- the next stage of queue update
-
-