com.instaclustr.cassandra.service.CqlSessionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Common classes and utilities integrated with various projects
package com.instaclustr.cassandra.service;
import com.datastax.oss.driver.api.core.CqlSession;
import com.instaclustr.operations.FunctionWithEx;
public interface CqlSessionService {
CqlSession getCqlSession();
T doWithCqlSession(final FunctionWithEx func) throws Exception;
}