public interface ConnectionRunnable
Vanilla Java:
new ConnectionCallable<A>() {
public A call(Connection c) { return ...; }
}
Java Lambda: (Connection c) -> ...
Modifier and Type | Method and Description |
---|---|
void |
run(java.sql.Connection connection) |