Class ResultSetSourceInfo
- java.lang.Object
-
- com.microsoft.azure.kusto.ingest.source.ResultSetSourceInfo
-
- All Implemented Interfaces:
SourceInfo
public class ResultSetSourceInfo extends Object
Represents the ResultSet source information used for ingestion.
-
-
Constructor Summary
Constructors Constructor Description ResultSetSourceInfo(ResultSet resultSet)
Creates a ResultSetSourceInfo.ResultSetSourceInfo(ResultSet resultSet, UUID sourceId)
Creates a ResultSetSourceInfo
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResultSet
getResultSet()
Gets the ResultSet.UUID
getSourceId()
void
setResultSet(ResultSet resultSet)
Sets the ResultSet.void
setSourceId(UUID sourceId)
String
toString()
void
validate()
Checks that this SourceInfo is defined appropriately.
-
-
-
Constructor Detail
-
ResultSetSourceInfo
public ResultSetSourceInfo(ResultSet resultSet)
Creates a ResultSetSourceInfo.- Parameters:
resultSet
- The ResultSet with the data to be ingested.
-
-
Method Detail
-
getResultSet
public ResultSet getResultSet()
Gets the ResultSet.- Returns:
- The ResultSet in the SourceInfo
-
setResultSet
public void setResultSet(ResultSet resultSet)
Sets the ResultSet.- Parameters:
resultSet
- The ResultSet with the data to be ingested.
-
validate
public void validate()
Description copied from interface:SourceInfo
Checks that this SourceInfo is defined appropriately.
-
getSourceId
public UUID getSourceId()
- Specified by:
getSourceId
in interfaceSourceInfo
-
setSourceId
public void setSourceId(UUID sourceId)
- Specified by:
setSourceId
in interfaceSourceInfo
-
-