seancarroll/fdb-java-es

View on GitHub
src/main/java/com/eventfully/foundationdb/eventstore/ReadDirection.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.eventfully.foundationdb.eventstore;

/**
 * Represents the direction of read operation.
 */
public enum ReadDirection {
    FORWARD,
    BACKWARD
}