I'm newbie to reactivex and rxscala, and can create an Observable
like this:
val observable = Observable[String] { subscriber =>
subscriber.onNext("something")
}
I can put new strings to the subscriber
inside the Observable.apply
.
Is it possible to update the observable
outside? I mean, is there any method like putNext
:
observable.putNext("another string")
to make me put new things to the existing observable?