NIMChatroomQueueChangeType enum Null safety

Inheritance

Constructors

NIMChatroomQueueChangeType()
const

Values

undefined → const NIMChatroomQueueChangeType
const NIMChatroomQueueChangeType(0)
offer → const NIMChatroomQueueChangeType

New element added to the queue

const NIMChatroomQueueChangeType(1)
poll → const NIMChatroomQueueChangeType

Element removed from a queue

const NIMChatroomQueueChangeType(2)
drop → const NIMChatroomQueueChangeType

All elements in a queue are cleared

const NIMChatroomQueueChangeType(3)
partialClear → const NIMChatroomQueueChangeType

Clear part of elements in the queue. If a user gets disconnected, the key associated with the user will be cleared.

const NIMChatroomQueueChangeType(4)
batchUpdate → const NIMChatroomQueueChangeType

Multiple elements in a queue are updated

const NIMChatroomQueueChangeType(5)

Properties

hashCode int
The hash code for this object.
read-only, inherited
index int
A numeric identifier for the enumerated value.
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<NIMChatroomQueueChangeType>
A constant List of the values in this enum, in order of their declaration.
[undefined, offer, poll, drop, partialClear, batchUpdate]