public LoadHandle
| Modifier and Type | Method and Description |
|---|---|
boolean |
getCancelled() |
void |
onLoadingEnd()
The API is async, hence, there is a possible case that actual loading is performed
in a background thread (e.g. using a library solution). Also it's possible that the data is loaded
in batches, hence, we need explicitly signal about data loading iteration end.
|
void |
onMaximumValue(long value) |
void |
onMinimumValue(long value) |
void |
onPointLoaded(long x,
long y) |
void |
onPointsLoaded(java.lang.Iterable<tech.harmonysoft.oss.leonardo.model.DataPoint> points) |
boolean getCancelled()
void onMinimumValue(long value)
void onMaximumValue(long value)
void onPointLoaded(long x,
long y)
void onPointsLoaded(@NotNull
java.lang.Iterable<tech.harmonysoft.oss.leonardo.model.DataPoint> points)
void onLoadingEnd()
The API is async, hence, there is a possible case that actual loading is performed in a background thread (e.g. using a library solution). Also it's possible that the data is loaded in batches, hence, we need explicitly signal about data loading iteration end.
This method serves that purpose