È questo il codice thread-safe?RxJava thread-safety
Observable<String> observable = ... // some observable that calls
// onNext from a background thread
observable
.scan(new ArrayList<String>(), (List<String> acc, String next) -> {
acc.add(next);
return acc;
})
.subscribe(list -> {
// do somethind with sequence of lists
...
});
Sono curioso perché ArrayList non è una struttura di dati thread-safe.
Le linee guida di progettazione Rx sono utili: http://go.microsoft.com/fwlink/?LinkID=205219. –
Possibile duplicato di [È necessario SerializedSubject per thread-safety in RxJava] (http://stackoverflow.com/questions/31841809/is-serializedsubject-necessi-for-thread-safety-in-rxjava) –