com.microsoft.azure.kusto.ingest.utils.RandomProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-ingest Show documentation
Show all versions of kusto-ingest Show documentation
Kusto client library for ingesting data
package com.microsoft.azure.kusto.ingest.utils;
import java.util.List;
public interface RandomProvider {
void shuffle(List> list);
}