22 lines
771 B
Objective-C
22 lines
771 B
Objective-C
#import <Ably/ARTClientOptions.h>
|
|
|
|
@interface ARTClientOptions ()
|
|
|
|
@property (nullable, strong, nonatomic) NSString *channelNamePrefix;
|
|
|
|
@property (readonly) BOOL isProductionEnvironment;
|
|
@property (readonly) BOOL hasEnvironment;
|
|
@property (readonly) BOOL hasEnvironmentDifferentThanProduction;
|
|
@property (readonly) BOOL hasCustomRestHost;
|
|
@property (readonly) BOOL hasDefaultRestHost;
|
|
@property (readonly) BOOL hasCustomRealtimeHost;
|
|
@property (readonly) BOOL hasDefaultRealtimeHost;
|
|
@property (readonly) BOOL hasCustomPort;
|
|
@property (readonly) BOOL hasCustomTlsPort;
|
|
|
|
+ (void)setDefaultEnvironment:(NSString *_Nullable)environment;
|
|
+ (BOOL)getDefaultIdempotentRestPublishingForVersion:(NSString *_Nonnull)version;
|
|
- (NSURLComponents *_Nonnull)restUrlComponents;
|
|
|
|
@end
|