BacklogManager

open class BacklogManager(session: Session?) : SyncableObject, BacklogManagerStub

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open fun receiveBacklog(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, messages: QVariantList)

Response to the corresponding requestBacklog call. messages contains the messages as QVariant<Message>

Link copied to clipboard
open fun receiveBacklogAll(first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, messages: QVariantList)

Response to the corresponding requestBacklogAll call. messages contains the messages as QVariant<Message>

Link copied to clipboard
open fun receiveBacklogAllFiltered(first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, type: Int = -1, flags: Int = -1, messages: QVariantList)

Response to the corresponding requestBacklogAllFiltered call. messages contains the messages as QVariant<Message>

Link copied to clipboard
open fun receiveBacklogFiltered(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, type: Int = -1, flags: Int = -1, messages: QVariantList)

Response to the corresponding requestBacklogFiltered call. messages contains the messages as QVariant<Message>

Link copied to clipboard
open fun receiveBacklogForward(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, type: Int = -1, flags: Int = -1, messages: QVariantList)

Response to the corresponding requestBacklogForward call. messages contains the messages as QVariant<Message>

Link copied to clipboard
open fun requestBacklog(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0)

Loads backlog for bufferId, where the message id is >= first and <last. If first or last is unset, the list will be unbounded in that direction.

Link copied to clipboard
open fun requestBacklogAll(first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0)

Loads backlog for all buffers, where the message id is >= first and <last. If first or last is unset, the list will be unbounded in that direction.

Link copied to clipboard
open fun requestBacklogAllFiltered(first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, type: Int = -1, flags: Int = -1)

Loads backlog for all buffers, where the message id is >= first and <last. If first or last is unset, the list will be unbounded in that direction.

Link copied to clipboard
open fun requestBacklogFiltered(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, additional: Int = 0, type: Int = -1, flags: Int = -1)

Loads backlog for bufferId, where the message id is >= first and <last. If first or last is unset, the list will be unbounded in that direction.

Link copied to clipboard
open fun requestBacklogForward(bufferId: BufferId, first: MsgId = MsgId(-1), last: MsgId = MsgId(-1), limit: Int = -1, type: Int = -1, flags: Int = -1)

Loads backlog for bufferId, where the message id is >= first and <last. If first or last is unset, the list will be unbounded in that direction.

Link copied to clipboard
open fun rpc(target: ProtocolSide, function: String, vararg arg: QVariant_)
Link copied to clipboard
open fun sync(target: ProtocolSide, function: String, vararg arg: QVariant_)

Properties

Link copied to clipboard
open override val className: String
Link copied to clipboard
override var initialized: Boolean = false
Link copied to clipboard
override var objectName: String
Link copied to clipboard
open override var session: Session?