@@ -517,31 +517,31 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
517517#pragma mark - Delayed Initialization
518518
519519/* *
520- When certain actions are required to complete prior to Branch initialization, call this method passing in dispatch_block_t,
521- initBlock, which contains the desired initialization of Branch (i.e. any of the initSessionWithLaunchOptions functions) and an int,
522- waitTime, which inidicates the number of seconds Branch should wait for the user to call invokeDelayedInitialization, after this
523- time, the initialization block will be invoked automatically .
524-
525- @param initBlock dispatch_block_t object that contains one of the initSessionWithLaunchOptions functions.
526- @param waitTime An int inidicating the number of seconds Branch should wait for the user to call
527- invokeDelayedInitialization before invoke the initBlock itself .
520+ When certain actions are required to complete prior to session initialization, call this method passing in dispatch_block_t,
521+ which contains session initialization, and an int, inidicating the number of seconds Branch should wait for the user
522+ to invoke the delayed Branch session initialization (see invokeDelayedInitialization). After this time, Branch will automatically
523+ invoke the delayed session initialization .
524+
525+ @param initBlock dispatch_block_t object with Branch initialization in it
526+ @param waitTime An int inidicating the number of seconds Branch should wait for the user to
527+ invoke the delayed initialization .
528528 @warning To avoid memory leaks take care to ensure that initBlock object does not capture any resources
529529 that require execution of the block body in order to be released, such as memory allocated with malloc(3)
530530 on which the block body calls free(3).
531531 */
532- - (void )dispatchInit : (dispatch_block_t )initBlock After : (int )waitTime ;
532+ - (void )dispatchInitSession : (dispatch_block_t )initBlock After : (int )waitTime ;
533533
534534/* *
535535 Call this method if delayed initilization is no longer desired.
536536
537537 @warning Does not affect an initialization that is already in progress.
538538 */
539- - (void )cancelDelayedInitialization ;
539+ - (void )cancelDelayedInitSession ;
540540
541541/* *
542542 Used together with dispatchInitAfter, call this method after prerequisite tasks for Branch initialization have completed.
543543 */
544- - (void )invokeDelayedInitialization ;
544+ - (void )invokeDelayedInitSession ;
545545
546546#pragma mark - Push Notification support
547547
0 commit comments