ARTPresenceMessage
Objective-C
@interface ARTPresenceMessage : ARTBaseMessage
Swift
class ARTPresenceMessage : ARTBaseMessage
Contains an individual presence update sent to, or received from, Ably.
-
The type of
ARTPresenceAction
theARTPresenceMessage
is for.Declaration
Objective-C
@property (nonatomic) ARTPresenceAction action;
Swift
var action: ARTPresenceAction { get set }
-
Combines
ARTBaseMessage.clientId
andARTBaseMessage.connectionId
to ensure that multiple connected clients with an identicalclientId
are uniquely identifiable.Declaration
Objective-C
- (nonnull NSString *)memberKey;
Swift
func memberKey() -> String
Return Value
A combination of
ARTBaseMessage.clientId
andARTBaseMessage.connectionId
.