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

com.netflix.astyanax.cql.CqlStatement Maven / Gradle / Ivy

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

import com.netflix.astyanax.Execution;
import com.netflix.astyanax.model.ConsistencyLevel;

public interface CqlStatement extends Execution {
    public CqlStatement withConsistencyLevel(ConsistencyLevel cl);
    public CqlStatement withCql(String cql);
    public CqlPreparedStatement asPreparedStatement();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy