MessageFlag

public class MessageFlag

Message storage policy flag constants.

Define message's storage and counting strategy, Used for Register custom message types When specified message behavior. Corresponds to internal MessageTag flag Value.

Usage Example:

// message stored and counted Unread count
val flag = MessageFlag.COUNT

// message Only Stored but not counted
val flag = MessageFlag.PERSIST

Properties

Link copied to clipboard
public final static Integer COUNT

message need Was/were stored and counted Unread message count.

Link copied to clipboard
public final static MessageFlag INSTANCE
Link copied to clipboard
public final static Integer NONE

Not stored, not counted.

Link copied to clipboard
public final static Integer PERSIST

message need Was/were store to message history record.

Link copied to clipboard
public final static Integer STATUS

Status message, Not stored, not counted.