T - type of data that is observed
Query) to receive data changes.public interface DataObserver<T>
| Modifier and Type | Method and Description |
|---|---|
void |
onData(T data)
Called when data changed.
|
void onData(T data)
Exception note: if this method throws an exception, it can be reacted on via
SubscriptionBuilder.onError(ErrorObserver).