Kinetica   C#   API  Version 7.2.3.1
IFileDownloadListener Interface Reference

Interface for receiving callbacks during file download operations. More...

Public Member Functions

void OnMultiPartDownloadComplete (IList< FileOperationResult > results)
 Called when all parts of a multi-part download have been completed. More...
 
void OnPartDownload (FileOperationResult result)
 Called when a single part of a multi-part download has been completed. More...
 
void OnFullFileDownload (IList< string > fileNames)
 Called when one or more full file downloads (non-multi-part) have been completed. More...
 

Detailed Description

Interface for receiving callbacks during file download operations.

Implement this interface to receive notifications about download progress.

Definition at line 9 of file IFileDownloadListener.cs.

Member Function Documentation

◆ OnFullFileDownload()

void IFileDownloadListener.OnFullFileDownload ( IList< string >  fileNames)

Called when one or more full file downloads (non-multi-part) have been completed.

Parameters
fileNamesList of file names that were downloaded.

◆ OnMultiPartDownloadComplete()

void IFileDownloadListener.OnMultiPartDownloadComplete ( IList< FileOperationResult results)

Called when all parts of a multi-part download have been completed.

Parameters
resultsList of results for each part of the download.

◆ OnPartDownload()

void IFileDownloadListener.OnPartDownload ( FileOperationResult  result)

Called when a single part of a multi-part download has been completed.

This is useful for tracking progress of large file downloads.

Parameters
resultResult of the part download.

The documentation for this interface was generated from the following file: