com.clickzetta.platform.client.CloseableInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.client;
import com.clickzetta.platform.common.Constant;
import java.io.IOException;
public interface CloseableInternal extends AutoCloseable {
@Deprecated
default void close() throws IOException {
close(Constant.CLOSEABLE_INTERNAL_DEFAULT_WAIT_TIME_MS);
}
void close(long wait_time_ms) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy