Hi, I need to filter a map with the result of an O...
# rx
f
Hi, I need to filter a map with the result of an Observable,
Copy code
node.outgoingLinks
                        .toObservable()
                        .filter { it.checkCondition(messageBody) }
                        .map { it.eventName }
and it.checkCondition return an observable I don’t know how to do this
stackoverflow 1