Skip to content
CDVPluginResult+HCPEvents.h 1.02 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
//
//  CDVPluginResult+HCPEvents.h
//
//  Created by Nikolay Demyankov on 13.08.15.
//

#import <Cordova/CDV.h>
#import "HCPApplicationConfig.h"

/**
 *  Category for CDVPluginResult class.
 *  Helps us to construct plugin specific results that are send back to the JavaScript.
 *
 *  @see HCPEvents
 */
@interface CDVPluginResult (HCPEvents)

/**
 *  Generate instance of the object from the captured notification.
 *
 *  @param notification notification with event information
 *
 *  @return plugin result instance
 */
+ (CDVPluginResult *)pluginResultForNotification:(NSNotification *)notification;

+ (CDVPluginResult *)pluginResultWithActionName:(NSString *)action applicationConfig:(HCPApplicationConfig *)appConfig error:(NSError *)error;

/**
 *  Construct plugin result.
 *
 *  @param action action name
 *  @param data   data to send
 *  @param error  error to send
 *
 *  @return plugin result instance
 */
+ (CDVPluginResult *)pluginResultWithActionName:(NSString *)action data:(NSDictionary *)data error:(NSError *)error;

@end