Package io.objectbox.reactive
Interface DataObserver<T>
-
- Type Parameters:
T
- type of data that is observedQuery
) to receive data changes.
public interface DataObserver<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onData(T data)
Called when data changed.
-
-
-
Method Detail
-
onData
void onData(T data)
Called when data changed.Exception note: if this method throws an exception, it can be reacted on via
SubscriptionBuilder.onError(ErrorObserver)
.
-
-