-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRCManager.h
More file actions
31 lines (24 loc) · 752 Bytes
/
RCManager.h
File metadata and controls
31 lines (24 loc) · 752 Bytes
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
//
// RCManager.h
// RestClient
//
// Created by Alberto García Hierro on 16/04/09.
// Copyright 2009 Alberto García Hierro. All rights reserved.
//
#import <Foundation/Foundation.h>
@class RCCall;
@interface RCManager : NSObject {
NSString *baseURL_;
NSMutableSet *managedCalls_;
id <NSObject> delegate_;
}
@property(nonatomic, retain) NSString *baseURL;
@property(nonatomic, assign) id <NSObject> delegate;
- (id)initWithBaseURL:(NSString *)theBaseURL;
- (id)initWithBaseURL:(NSString *)theBaseURL delegate:(id <NSObject>)theDelegate;
- (void)cancelCalls;
- (void)cancelCall:(RCCall *)theCall;
- (void)cancelCallsForDelegate:(NSObject *)theDelegate;
- (void)pushCall:(RCCall *)theCall;
- (void)callDidComplete:(RCCall *)theCall;
@end