mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
45 lines
1.2 KiB
Objective-C
45 lines
1.2 KiB
Objective-C
/*
|
|
* This is the source code of Telegram for iOS v. 1.1
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Peter Iakovlev, 2013.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "ASHandle.h"
|
|
|
|
@interface ASActor : NSObject
|
|
|
|
+ (void)registerActorClass:(Class)requestBuilderClass;
|
|
|
|
+ (ASActor *)requestBuilderForGenericPath:(NSString *)genericPath path:(NSString *)path;
|
|
|
|
+ (NSString *)genericPath;
|
|
|
|
@property (nonatomic, strong) NSString *path;
|
|
|
|
@property (nonatomic, strong) NSString *requestQueueName;
|
|
@property (nonatomic, strong) NSDictionary *storedOptions;
|
|
|
|
@property (nonatomic) bool requiresAuthorization;
|
|
|
|
@property (nonatomic) NSTimeInterval cancelTimeout;
|
|
@property (nonatomic, strong) id cancelToken;
|
|
@property (nonatomic, strong) NSMutableArray *multipleCancelTokens;
|
|
@property (nonatomic) bool cancelled;
|
|
|
|
- (id)initWithPath:(NSString *)path;
|
|
- (void)prepare:(NSDictionary *)options;
|
|
- (void)execute:(NSDictionary *)options;
|
|
- (void)cancel;
|
|
|
|
- (void)addCancelToken:(id)token;
|
|
|
|
- (void)watcherJoined:(ASHandle *)watcherHandle options:(NSDictionary *)options waitingInActorQueue:(bool)waitingInActorQueue;
|
|
|
|
- (void)handleRequestProblem;
|
|
|
|
@end
|