All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hmsonline.cassandra.triggers.LogEntryStatus Maven / Gradle / Ivy

Go to download

Cassandra Triggers is a lightweight mechanism to implement trigger-like functionality for Cassandra.

There is a newer version: 1.0.1
Show newest version
package com.hmsonline.cassandra.triggers;

public enum LogEntryStatus {
    PREPARING, COMMITTED, COMPLETE, ERROR; // ; is optional

    @Override
    public String toString() {
        return super.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy