com.microsoft.azure.kusto.data.instrumentation.SupplierOneException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-data Show documentation
Show all versions of kusto-data Show documentation
Kusto client library for executing queries and retrieving data
package com.microsoft.azure.kusto.data.instrumentation;
/**
* Supplier is a functional interface that can be used to execute data operations.
* @param
* @param
*/
@FunctionalInterface
public interface SupplierOneException {
/**
* Execute a data operation.
*
* @return T
* @throws U
*/
T get() throws U;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy