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

com.github.davidmoten.rx.jdbc.State Maven / Gradle / Ivy

There is a newer version: 0.7.19
Show newest version
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