Let's say I have an Person
interface, that have an name
observable:
interface Person {
Observable<String> name;
}
And it's implementation:
class David implements Person {
Observable<String> name = BehaviorSubject<>.createDefault("David");
}
And now there is a problem, because I can't get current value of name
observable:
class Main {
public static void main(String[] args) {
Person person = PersonFactory.create();
System.out.println(??person.name.currentValue??);
}
}
I don't want to expose the name as BehaviorSubject in my interface, because then everyone would be able to change the name, which isn't what I want.
I kind of understand a logic of Observables, so I know they aren't designed to store any value. So what is "an immutable observable with current value" in RxJava?
In Android there is a LiveData
and MutableLiveData
. To my understanding MutableLiveData
is the equivalent of BehaviorSubject
, so what is the equivalent of LiveData
in RxJava?
I've decided to create my own
LiveData
, using a field delegation