Kinetica   C#   API  Version 7.2.3.1
IFileUploadListener Interface Reference

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

Public Member Functions

void OnMultiPartUploadComplete (IList< FileOperationResult > results)
 Called when all parts of a multi-part upload have been completed. More...
 
void OnPartUpload (FileOperationResult result)
 Called when a single part of a multi-part upload has been completed. More...
 
void OnFullFileUpload (FileOperationResult result)
 Called when a full file upload (non-multi-part) has been completed. More...
 

Detailed Description

Interface for receiving callbacks during file upload operations.

Implement this interface to receive notifications about upload progress.

Definition at line 9 of file IFileUploadListener.cs.

Member Function Documentation

◆ OnFullFileUpload()

void IFileUploadListener.OnFullFileUpload ( FileOperationResult  result)

Called when a full file upload (non-multi-part) has been completed.

Parameters
resultResult of the file upload.

◆ OnMultiPartUploadComplete()

void IFileUploadListener.OnMultiPartUploadComplete ( IList< FileOperationResult results)

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

Parameters
resultsList of results for each part of the upload.

◆ OnPartUpload()

void IFileUploadListener.OnPartUpload ( FileOperationResult  result)

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

This is useful for tracking progress of large file uploads.

Parameters
resultResult of the part upload.

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