Uses of Class
com.github.ddth.queue.utils.QueueException
-
Packages that use QueueException Package Description com.github.ddth.queue com.github.ddth.queue.impl com.github.ddth.queue.utils -
-
Uses of QueueException in com.github.ddth.queue
Methods in com.github.ddth.queue that throw QueueException Modifier and Type Method Description intIQueue. ephemeralSize()Get number of items currently in ephemeral storage.voidIQueue. finish(IQueueMessage<ID,DATA> msg)Called when finish processing the message to cleanup ephemeral storage.booleanIQueue. queue(IQueueMessage<ID,DATA> msg)Queue a message.intIQueue. queueSize()Get number of items currently in queue storage.booleanIQueue. requeue(IQueueMessage<ID,DATA> msg)Re-queue a message.booleanIQueue. requeueSilent(IQueueMessage<ID,DATA> msg)Silently re-queue a message.IQueueMessage<ID,DATA>IQueue. take()Take a message out of queue. -
Uses of QueueException in com.github.ddth.queue.impl
Methods in com.github.ddth.queue.impl that throw QueueException Modifier and Type Method Description protected abstract booleanBaseRedisQueue. remove(IQueueMessage<ID,DATA> msg)Remove a message completely. -
Uses of QueueException in com.github.ddth.queue.utils
Subclasses of QueueException in com.github.ddth.queue.utils Modifier and Type Class Description static classQueueException.CannotDeserializeQueueMessageThrown to indicate that the queue message can not be deserialized.static classQueueException.CannotSerializeQueueMessageThrown to indicate that the queue message can not be serialized.static classQueueException.EphemeralIsFullThrown to indicate that the ephemeral storage is full.static classQueueException.OperationNotSupportedThrown to indicate that the queue implementation does not support the invoked operation.static classQueueException.QueueIsFullThrown to indicate that the queue storage is full.
-