SDK  2.1.4 [async]
CloudBackend Software Development Kit - SDK API for C++
ProgressEventFn.h
1 #ifndef cbe__delegate__ProgressEventFn_h__
2 #define cbe__delegate__ProgressEventFn_h__
3 
4 #include <functional>
5 
6 namespace cbe {
7  namespace delegate {
8 
9 // Forward declaration
10 class ChunkTransferred;
11 
19 using ProgressEventFn = std::function<void(const ChunkTransferred&)>;
20 
21  } // namespace delegate
22 } // namespace cbe
23 
24 #endif // #ifndef cbe__delegate__ProgressEventFn_h__
Bundles the progress event information in connection with download and upload.
Definition: ChunkTransferred.h:23
std::function< void(const ChunkTransferred &)> ProgressEventFn
Callback interface function that the CloudBackend SDK uses to indicate the progress of an upload/down...
Definition: ProgressEventFn.h:19
Root namespace for the CloudBackend SDK API.
Definition: Account.h:22