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

com.netflix.astyanax.CassandraOperationTracer Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax;

import com.netflix.astyanax.connectionpool.exceptions.ConnectionException;

/**
 * Notification interface of success or failures executing keyspace operations.
 * 
 * @author elandau
 * 
 */
public interface CassandraOperationTracer {
    CassandraOperationTracer start();

    void success();

    void failure(ConnectionException e);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy