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

com.microsoft.azure.kusto.ingest.QueuedIngestClient Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

package com.microsoft.azure.kusto.ingest;

import com.azure.storage.common.policy.RequestRetryOptions;

public interface QueuedIngestClient extends IngestClient {
    /**
     * Setter for QueueRequestOptions used by the client on adding ingest message to the Azure queue, read here
     * https://docs.microsoft.com/azure/data-explorer/kusto/api/netfx/about-kusto-ingest#ingest-client-flavors
     * about Kusto queued ingestion
     * @param queueRequestOptions - Options to use when creating QueueClient
     */
    void setQueueRequestOptions(RequestRetryOptions queueRequestOptions);

    IngestionResourceManager getResourceManager();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy