com.hmsonline.cassandra.triggers.TestTrigger 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;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TestTrigger implements Trigger {
private static Logger logger = LoggerFactory.getLogger(TestTrigger.class);
public void process(LogEntry logEntry) {
logger.debug("Trigger processing : [" + logEntry.getUuid() + "]");
}
}