fetchMostRecentChannels

abstract fun fetchMostRecentChannels(limit: Int = 100, offset: Int = 0, listener: RainbowListener<List<Channel>, Unit>? = null)

Fetch most recent channels

The response is sent in the success callback as a List<Channel>.

Parameters

limit

Int Allow to specify the number of channels to retrieve (default value 100)

offset

Int Allow to specify the position of first channel to retrieve (default value 0)

listener

RainbowListener, Unit> callback (onSuccess, onError)