``` IO.async<Unit> { _, cb -> ...
# arrow
i
Copy code
IO.async<Unit> { _, cb ->
            poClient.getPage(pageOffset).fold(
                { error -> cb(Left(error)) },
                { result -> cb(Right(result)) })}
            .map(::writePoResults)