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

net.snowflake.client.jdbc.ResultStreamProvider Maven / Gradle / Ivy

There is a newer version: 3.21.0
Show newest version
package net.snowflake.client.jdbc;

import java.io.InputStream;

// Defines how the underlying data stream is to be fetched; i.e.
// allows large resultset data to come from a different source
public interface ResultStreamProvider {
  InputStream getInputStream(ChunkDownloadContext context) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy