com.github.davidmoten.rx.jdbc.State Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-jdbc Show documentation
Show all versions of rxjava-jdbc Show documentation
rx-java Observables for jdbc
package com.github.davidmoten.rx.jdbc;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.concurrent.atomic.AtomicBoolean;
class State {
volatile Connection con;
volatile PreparedStatement ps;
volatile ResultSet rs;
final AtomicBoolean closed = new AtomicBoolean(false);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy