File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1462,4 +1462,9 @@ typedef NS_ENUM(NSUInteger, BranchPromoCodeUsageType) {
14621462 */
14631463- (void )registerViewWithParams : (NSDictionary *)params andCallback : (callbackWithParams)callback ;
14641464
1465+ /* *
1466+ Method used by external Branch libs to initiate server requests
1467+ */
1468+ - (void )executeGenericRequest : (BNCServerRequest*)request ;
1469+
14651470@end
Original file line number Diff line number Diff line change @@ -447,6 +447,14 @@ - (BOOL)continueUserActivity:(NSUserActivity *)userActivity {
447447 return spotlightIdentifier != nil ;
448448}
449449
450+ #pragma mark - Generic Request support
451+
452+ - (void )executeGenericRequest : (BNCServerRequest*)request {
453+ [self initSessionIfNeededAndNotInProgress ];
454+ [self .requestQueue enqueue: request];
455+ [self processNextQueueItem ];
456+ }
457+
450458
451459#pragma mark - Push Notification support
452460
You can’t perform that action at this time.
0 commit comments