TransferEventProtocol.h
IntroductionUse the links in the table of contents to the left to access the documentation. ClassesFunctionsonChunkSentvirtual void onChunkSent( cbe::Object&& object, std::uint64_t sent, std::uint64_t total); DiscussionGets called when a chunk of data has successfully been recieved. onObjectUploadedvirtual void onObjectUploaded( cbe::Object&& object); DiscussionGets called when a upload has been completed. onObjectUploadFailedvirtual void onObjectUploadFailed( std::string name, cbe::ObjectId objectId, cbe::ContainerId parentId, cbe::failed_status_t status); DiscussionGets called when a error has occured in the upload stream. Globalscbeenum FailedStatus : cbe::failed_status_t { FileNotFound = 1, NotEnoughSpace = 2, Aborted = 3, Unknown = 4 }; // enum FailedStatus DiscussionEnum class for the different transfer failures that can occur. |