What’s the best way to convert a Single of somethi...
# rx
f
What’s the best way to convert a Single of something to an Observable of something else? I done with this:
Copy code
`  return BrokerFactory.broker.publish(jsonSharedWithApp).toObservable().flatMap{ Observable.just(ServiceTaskResult(eventName,messageBody)} `
I’m sure that there is a better solution...