Package io.awspring.cloud.sqs
Class FifoUtils
java.lang.Object
io.awspring.cloud.sqs.FifoUtils
Methods related to FIFO queues.
- Since:
- 3.0
- Author:
- Tomaz Fernandes
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
areAllFifo
(Collection<String> queues) Return whether all provided queues are Fifo.static boolean
areNotFifo
(Collection<String> queues) Return whether all provided queues are not Fifo.static boolean
Return whether the provided queue is Fifo.
-
Method Details
-
isFifo
Return whether the provided queue is Fifo.- Parameters:
queue
- the queue.- Returns:
- true if fifo.
-
areAllFifo
Return whether all provided queues are Fifo.- Parameters:
queues
- the queues.- Returns:
- true if all queues are Fifo.
-
areNotFifo
Return whether all provided queues are not Fifo.- Parameters:
queues
- the queues.- Returns:
- true if all queues are not Fifo.
-