hank
2017-09-04 37c026a8cae451b543b46d2941a221b8b1bd2c5e
commit | author | age
bad748 1 /*
W 2  *  Copyright (c) 2014, Facebook, Inc.
3  *  All rights reserved.
4  *
5  *  This source code is licensed under the BSD-style license found in the
6  *  LICENSE file in the root directory of this source tree. An additional grant
7  *  of patent rights can be found in the PATENTS file in the same directory.
8  *
9  */
10
11 #import <Foundation/Foundation.h>
12
13 /*! The name of the notification posted by BFMeasurementEvent */
14 FOUNDATION_EXPORT NSString *const BFMeasurementEventNotificationName;
15
16 /*! Defines keys in the userInfo object for the notification named BFMeasurementEventNotificationName */
17 /*! The string field for the name of the event */
18 FOUNDATION_EXPORT NSString *const BFMeasurementEventNameKey;
19 /*! The dictionary field for the arguments of the event */
20 FOUNDATION_EXPORT NSString *const BFMeasurementEventArgsKey;
21
22 /*! Bolts Events raised by BFMeasurementEvent for Applink */
23 /*!
24  The name of the event posted when [BFURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL.
25  */
26 FOUNDATION_EXPORT NSString *const BFAppLinkParseEventName;
27
28 /*!
29  The name of the event posted when [BFURL URLWithInboundURL:] is called successfully.
30  This represents parsing an inbound app link URL from a different application
31  */
32 FOUNDATION_EXPORT NSString *const BFAppLinkNavigateInEventName;
33
34 /*! The event raised when the user navigates from your app to other apps */
35 FOUNDATION_EXPORT NSString *const BFAppLinkNavigateOutEventName;
36
37 /*!
38  The event raised when the user navigates out from your app and back to the referrer app.
39  e.g when the user leaves your app after tapping the back-to-referrer navigation bar
40  */
41 FOUNDATION_EXPORT NSString *const BFAppLinkNavigateBackToReferrerEventName;
42
43 @interface BFMeasurementEvent : NSObject
44
45 @end