src.com.ibm.as400.access.AS400JDBCConnectionAbortRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt400-jdk8 Show documentation
Show all versions of jt400-jdk8 Show documentation
The Open Source version of the IBM Toolbox for Java
The newest version!
package com.ibm.as400.access;
public class AS400JDBCConnectionAbortRunnable implements Runnable {
AS400JDBCConnection connection_ = null;
public AS400JDBCConnectionAbortRunnable(AS400JDBCConnection connection) {
connection_ = connection;
}
public void run() {
connection_.handleAbort();
}
}