hank
2017-06-14 a0a84333e64f1e94ae9d0f69545037c60e781842
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  TWTRScribeService.h
//
//  Created by Mustafa Furniturewala on 7/21/14.
//  Copyright (c) 2014 Twitter. All rights reserved.
//
 
@class TFSScribe;
@class TWTRScribeEvent;
@class TWTRAPIClient;
@class TWTRAuthConfig;
@class TWTRGuestSession;
@class TWTRNetworkingPipeline;
@class TWTRSessionStore;
@class TwitterNetworking;
@protocol TWTRAuthSession;
@protocol TWTRAPIServiceConfig;
 
NS_ASSUME_NONNULL_BEGIN
 
@interface TWTRScribeService : NSObject
 
- (instancetype)initWithScribe:(TFSScribe *)scribe scribeAPIServiceConfig:(id<TWTRAPIServiceConfig>)APIserviceConfig;
 
- (instancetype)init __unavailable;
 
/**
 This method must be called before the scribe attempts to enqueue any network requests.
 */
- (void)setSessionStore:(TWTRSessionStore *)sessionStore networkingPipeline:(TWTRNetworkingPipeline *)pipeline;
 
- (void)enqueueEvent:(nullable TWTRScribeEvent *)event;
- (void)enqueueEvents:(nullable NSArray *)events;
 
@end
 
NS_ASSUME_NONNULL_END