RemoteControllerDelegate Protocol Reference
Conforms to | NSObject |
Declared in | VDARRemoteController.h |
Overview
The remote controller delegate can be used to keep track of the remote operations progress.
Tasks
-
– remoteController:didProgress:isReady:folder:
This method is called on the receiver when the remote controller progress has been updated.
required method
Instance Methods
remoteController:didProgress:isReady:folder:
This method is called on the receiver when the remote controller progress has been updated.
- (void)remoteController:(VDARRemoteController *)controller didProgress:(float)prc isReady:(bool)isReady folder:(NSString *)folder
Parameters
- controller
The remote controller from which the update took place
- prc
The progress value of the remote operation (between 0 and 1).
- isReady
Returns true when recognition is ready to use (default: false).
- folder
The name of the folder which the context being downloaded is contained
Discussion
This method is called on the receiver when the remote controller progress has been updated.
Warning: The progress value might not be consecutive at each call. For exemple if a remote operation is added while one is in progress, the progress value might be lower than on the previous call. However a value of 0 always indicates the start of remote operations whereas a value of 1 always indicates the end of the remote operations.
Declared In
VDARRemoteController.h