yeet
This commit is contained in:
55
node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskManagerInterface.h
generated
vendored
Normal file
55
node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskManagerInterface.h
generated
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
// Copyright 2018-present 650 Industries. All rights reserved.
|
||||
|
||||
#import <UMTaskManagerInterface/UMTaskInterface.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
// Interface for UMTaskManager module.
|
||||
|
||||
@protocol UMTaskManagerInterface
|
||||
|
||||
/**
|
||||
* Returns boolean value whether task with given taskName has been registered by the app.
|
||||
*/
|
||||
- (BOOL)hasRegisteredTaskWithName:(NSString *)taskName;
|
||||
|
||||
/**
|
||||
* Returns boolean value whether or not the task's consumer is a member of given class.
|
||||
*/
|
||||
- (BOOL)taskWithName:(NSString *)taskName hasConsumerOfClass:(Class)consumerClass;
|
||||
|
||||
/**
|
||||
* Registers task with given name, task consumer class and options.
|
||||
* Can throw an exception if task with given name is already registered
|
||||
* or given consumer class doesn't conform to UMTaskConsumerInterface protocol.
|
||||
*/
|
||||
- (void)registerTaskWithName:(NSString *)taskName
|
||||
consumer:(Class)consumerClass
|
||||
options:(NSDictionary *)options;
|
||||
|
||||
/**
|
||||
* Unregisters task with given name and consumer class.
|
||||
* Can throw an exception if the consumer class mismatches.
|
||||
*/
|
||||
- (void)unregisterTaskWithName:(NSString *)taskName
|
||||
consumerClass:(nullable Class)consumerClass;
|
||||
|
||||
/**
|
||||
* Returns boolean value whether the application contains
|
||||
* given backgroundMode in UIBackgroundModes field in Info.plist file.
|
||||
*/
|
||||
- (BOOL)hasBackgroundModeEnabled:(NSString *)backgroundMode;
|
||||
|
||||
/**
|
||||
* Called by task manager service to send an event with given body.
|
||||
*/
|
||||
- (void)executeWithBody:(NSDictionary *)body;
|
||||
|
||||
/**
|
||||
* Whether or not the module was initialized for headless (background) JS app.
|
||||
*/
|
||||
- (BOOL)isRunningInHeadlessMode;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user