package durablequeue
An in-memory durable queue to facilitate tests.
Sample usage within a Java test:
DurableQueue durableQueue = InMemoryQueue$.MODULE$.queue(mat, system);
Sample usage within a Scala test:
val durableQueue = InMemoryQueue.queue()
- Alphabetic
- By Inheritance
- durablequeue
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- abstract class DurableQueueTestSuite extends TestSuite with TestKitBase
Defines a reusable test suite that tests
DurableQueue
implementations.Defines a reusable test suite that tests
DurableQueue
implementations.- Annotations
- @SuppressWarnings()
- final class InMemoryQueue extends DurableQueue
An implementation of
DurableQueue
that uses an in-memory data structures.An implementation of
DurableQueue
that uses an in-memory data structures. This is useful for testing and should not be used in production environments due to there being no durability.
Value Members
- object InMemoryQueue