com.hmsonline.cassandra.triggers.PausedTrigger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hms-cassandra-triggers Show documentation
Show all versions of hms-cassandra-triggers Show documentation
Cassandra Triggers is a lightweight mechanism to implement trigger-like functionality for Cassandra.
package com.hmsonline.cassandra.triggers;
/**
* @author Isaac Rieksts
*
*/
public class PausedTrigger implements Trigger {
/* (non-Javadoc)
* @see com.hmsonline.cassandra.triggers.Trigger#process(com.hmsonline.cassandra.triggers.LogEntry)
*/
public void process(LogEntry loEntry) {
}
}