Single.just(listOf(A(), A(), A()))
.subscribe({
if (it.isEmpty()) {
v.empty()
} else {
v.display(it)
}
}, {
v.error()
})