ORKDataLoggerManagerDelegate Protocol Reference
| Conforms to | NSObject |
|---|---|
| Declared in | ORKDataLogger.h |
Overview
The ORKDataLoggerManagerDelegate protocol defines methods a delegate can implement to receive notifications
when the data loggers managed by a ORKDataLoggerManager reach a certain file size threshold.
– dataLoggerManager:pendingUploadBytesReachedThreshold:
required method
Called by the data logger manager when the total size of files that are not marked uploaded has reached a threshold.
- (void)dataLoggerManager:(ORKDataLoggerManager *)dataLoggerManager pendingUploadBytesReachedThreshold:(unsigned long long)pendingUploadBytesParameters
dataLoggerManager |
The manager that produced the notification. |
|---|---|
pendingUploadBytes |
The number of bytes managed by all the loggers, which have not yet been marked uploaded. |
Declared In
ORKDataLogger.h
– dataLoggerManager:totalBytesReachedThreshold:
required method
Called by the data logger manager when the total size of files managed by any of the loggers has reached a threshold.
- (void)dataLoggerManager:(ORKDataLoggerManager *)dataLoggerManager totalBytesReachedThreshold:(unsigned long long)totalBytesParameters
dataLoggerManager |
The manager that produced the notification. |
|---|---|
totalBytes |
The total number of bytes of all files managed. |
Declared In
ORKDataLogger.h