ARTRestChannelsInternal
Objective-C
@interface ARTRestChannelsInternal : NSObject
- (ARTRestChannelInternal *)get:(NSString *)name;
- (ARTRestChannelInternal *)get:(NSString *)name options:(ARTChannelOptions *)options;
- (id<NSFastEnumeration>)copyIntoIteratorWithMapper:(ARTRestChannel *(^)(ARTRestChannelInternal *))mapper;
- (instancetype)initWithRest:(ARTRestInternal *)rest logger:(ARTInternalLog *)logger;
- (ARTRestChannelInternal *)_getChannel:(NSString *)name options:(ARTChannelOptions * _Nullable)options addPrefix:(BOOL)addPrefix;
- (BOOL)exists:(NSString *)name;
- (void)release:(NSString *)name;
@end
Swift
class ARTRestChannelsInternal : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
- (ARTRestChannelInternal *)get:(NSString *)name;Swift
func get(_ name: String) -> ARTRestChannelInternal -
Undocumented
Declaration
Objective-C
- (ARTRestChannelInternal *)get:(NSString *)name options:(ARTChannelOptions *)options;Swift
func get(_ name: String, options: ARTChannelOptions) -> ARTRestChannelInternal -
Undocumented
Declaration
Objective-C
- (id<NSFastEnumeration>)copyIntoIteratorWithMapper:(ARTRestChannel *(^)(ARTRestChannelInternal *))mapper;Swift
func copyIntoIterator(mapper: @escaping (ARTRestChannelInternal) -> ARTRestChannel) -> any NSFastEnumeration -
Undocumented
Declaration
Objective-C
- (instancetype)initWithRest:(ARTRestInternal *)rest logger:(ARTInternalLog *)logger;Swift
init(rest: ARTRestInternal, logger: InternalLog) -
Undocumented
Declaration
Objective-C
- (ARTRestChannelInternal *)_getChannel:(NSString *)name options:(ARTChannelOptions * _Nullable)options addPrefix:(BOOL)addPrefix;Swift
func _getChannel(_ name: String, options: ARTChannelOptions?, addPrefix: Bool) -> ARTRestChannelInternal -
Undocumented
Declaration
Objective-C
- (BOOL)exists:(NSString *)name;Swift
func exists(_ name: String) -> Bool -
Undocumented
Declaration
Objective-C
- (void)release:(NSString *)name;Swift
func release(_ name: String)