ARTWrapperSDKProxyRealtime
Objective-C
@interface ARTWrapperSDKProxyRealtime
: NSObject <ARTRealtimeInstanceMethodsProtocol>
Swift
class ARTWrapperSDKProxyRealtime : NSObject, ARTRealtimeInstanceMethodsProtocol, @unchecked Sendable
An object which wraps an instance of ARTRealtime
and provides a similar API. It allows Ably-authored wrapper SDKs to send analytics information so that Ably can track the usage of the wrapper SDK.
Important
This class should only be used by Ably-authored SDKs.-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
@property (readonly) ARTConnection *connection
Swift
var connection: ARTConnection { get }
-
Undocumented
Declaration
Objective-C
@property (readonly) ARTWrapperSDKProxyRealtimeChannels *channels
Swift
var channels: ARTWrapperSDKProxyRealtimeChannels { get }
-
Undocumented
Declaration
Objective-C
@property (readonly) ARTWrapperSDKProxyPush *push
Swift
var push: ARTWrapperSDKProxyPush { get }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithRealtime:(ARTRealtime *)realtime proxyOptions:(ARTWrapperSDKProxyOptions *)proxyOptions NS_DESIGNATED_INITIALIZER;
Swift
init(realtime: ARTRealtime, proxyOptions: ARTWrapperSDKProxyOptions)