getPollChangeLogsSinceToken

Requests poll change logs after given token. The result is passed to handler.

Since

4.15.0

Parameters

token

Specifies the token to be the reference point for the changelogs to retrieve. If the token is null, the result will be passed from the beginning.

handler

Callback handler.

See also


suspend fun BaseChannel.getPollChangeLogsSinceToken(token: String?): PollChangeLogsResult

Deprecated

As of 4.17.0, replaced with awaitGetPollChangeLogsSinceToken(token).

Replace with

awaitGetPollChangeLogsSinceToken(token)

Requests poll change logs after given timestamp. The result is passed to handler.

Return

The poll change logs result

Since

4.15.0

Parameters

token

Specifies the token to be the reference point for the changelogs to retrieve. If the token is null, the result will be passed from the beginning.

See also