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

org.stuartgunter.dropwizard.cassandra.retry.FallthroughRetryPolicyFactory Maven / Gradle / Ivy

package org.stuartgunter.dropwizard.cassandra.retry;

import com.datastax.driver.core.policies.FallthroughRetryPolicy;
import com.datastax.driver.core.policies.RetryPolicy;
import com.fasterxml.jackson.annotation.JsonTypeName;
import org.stuartgunter.dropwizard.cassandra.retry.RetryPolicyFactory;

@JsonTypeName("fallthrough")
public class FallthroughRetryPolicyFactory implements RetryPolicyFactory {
    @Override
    public RetryPolicy build() {
        return FallthroughRetryPolicy.INSTANCE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy