Class FileSourceInfo
- java.lang.Object
-
- com.microsoft.azure.kusto.ingest.source.FileSourceInfo
-
- All Implemented Interfaces:
SourceInfo
public class FileSourceInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description FileSourceInfo(String filePath, long rawSizeInBytes)
FileSourceInfo(String filePath, long rawSizeInBytes, UUID sourceId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFilePath()
long
getRawSizeInBytes()
UUID
getSourceId()
void
setFilePath(String filePath)
void
setRawSizeInBytes(long rawSizeInBytes)
void
setSourceId(UUID sourceId)
void
validate()
Checks that this SourceInfo is defined appropriately.
-
-
-
Method Detail
-
getFilePath
public String getFilePath()
-
setFilePath
public void setFilePath(String filePath)
-
getRawSizeInBytes
public long getRawSizeInBytes()
-
setRawSizeInBytes
public void setRawSizeInBytes(long rawSizeInBytes)
-
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
-
-