ARTMessageAction
Objective-C
enum ARTMessageAction : NSUInteger {}
Swift
enum ARTMessageAction : UInt, @unchecked Sendable
The namespace containing the different types of message actions.
-
Message action for a newly created message.
Declaration
Objective-C
ARTMessageActionCreateSwift
case create = 0 -
Message action for an updated message.
Declaration
Objective-C
ARTMessageActionUpdateSwift
case update = 1 -
Message action for a deleted message.
Declaration
Objective-C
ARTMessageActionDeleteSwift
case delete = 2 -
A meta-message (a message originating from ably rather than being explicitly published on a channel), containing information such as inband channel occupancy events that has been requested by channel param.
Declaration
Objective-C
ARTMessageActionMetaSwift
case meta = 3 -
Message action for a message containing the latest rolled-up summary of annotations that have been made to this message.
Declaration
Objective-C
ARTMessageActionMessageSummarySwift
case messageSummary = 4