org.mariadb.jdbc.util.timeout.NoOpQueryTimeoutHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mariadb-java-client Show documentation
Show all versions of mariadb-java-client Show documentation
JDBC driver for MariaDB and MySQL
The newest version!
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2012-2014 Monty Program Ab
// Copyright (c) 2015-2024 MariaDB Corporation Ab
package org.mariadb.jdbc.util.timeout;
public class NoOpQueryTimeoutHandler implements QueryTimeoutHandler {
public static final NoOpQueryTimeoutHandler INSTANCE = new NoOpQueryTimeoutHandler();
@Override
public QueryTimeoutHandler create(int queryTimeout) {
return INSTANCE;
}
@Override
public void close() {}
}