Skip to content

Instantly share code, notes, and snippets.

View Viska97's full-sized avatar

Vasiliy Materikin Viska97

View GitHub Profile
@Viska97
Viska97 / TestBoundaryCallback.kt
Last active March 7, 2019 17:42
PagedList.BoundaryCallback with coroutines
class TestBoundaryCallback(
private val pageSize: Int,
private val dataSource: BackendDataSource,
private val database : AppDatabase
) : PagedList.BoundaryCallback<?>(){
var networkState = MutableLiveData<Int>()
private var isRequestInProgress = false