EAEExxtractorServerActionsRequesting

Objective-C

@protocol EAEExxtractorServerActionsRequesting <NSObject>

/*!
 Method that performs the request which retrieves the server logs
 
 @param success The block which will be executed upon a successful request
 @param failure The block which will be executed upon a failed request
 */
- (void)requestLogWithSuccess:(BAWebServiceSuccessResponse)success
        failure:(BAWebServiceFailureResponse)failure;

/*!
 Method that performs the request which reboots the server
 
 @param success The block which will be executed upon a successful request
 @param failure The block which will be executed upon a failed request
 */
- (void)requestRebootWithSuccess:(BAWebServiceSuccessResponse)success
                         failure:(BAWebServiceFailureResponse)failure;

@end

Swift

protocol EAEExxtractorServerActionsRequesting : NSObjectProtocol

Undocumented