seancarroll/fdb-java-es

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

Summary

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

/**
 * Represents the status of a event read.
 */
public enum ReadEventStatus {

    /**
     * The read operation was successful.
     */
    SUCCESS,

    /**
     * The event was not found.
     */
    NOT_FOUND,

    /**
     * The stream previously existed but was deleted
     */
    STREAM_DELETED
}