use of org.springframework.data.cassandra.ReactiveSessionFactory in project spring-data-cassandra by spring-projects.
the class ReactiveCqlTemplate method getSession.
private Mono<ReactiveSession> getSession() {
ReactiveSessionFactory sessionFactory = getSessionFactory();
Assert.state(sessionFactory != null, "SessionFactory is null");
return sessionFactory.getSession();
}
Aggregations