Reaktive 1.1.16 is out! - Added  `Completable.blo...
# reaktive
a
Reaktive 1.1.16 is out! • Added 
Completable.blockingAwait()
 operator (#497) • Added 
getValue
 and 
setValue
 extensions for atomics delegation (#496) • Added KDocs for interfaces with factory functions (#495) • Added 
Emitter.setCancellable {}
 extension function (#503) • Added 
TestScheduler.isManualProcessing
 variable property (#506) • Fixed a bug when some collection-based operators did not complete when the collection is empty (#501 by @amihusb)
🎉 5
You can now write like this:
s
Random thought, maybe relays/subjects could support similar syntax in
DisposableScope
:)
a
@shikasd Could you please provide a code sample?
s
Not sure about exact API, but I think we had something like this somewhere
Copy code
var value by BehaviorSubject<Int>()

value = 0 // translates to subject.onNext(0)
println(value) // translates to subject.getValue()
a
Yeah we can do this. But you mentioned the
DisposableScope
, how is it related?
s
Just an idea, that this subscription to value can be related to disposable scope I am not sure if it is necessary good idea, but just a random thought
a
But... there is no subscription here... you just read the value and write... Am I missing something?