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

com.clickzetta.platform.client.CloseableInternal Maven / Gradle / Ivy

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