java.lang.Object
is.codion.common.model.FilterModel.AbstractRefresher<T>
- Type Parameters:
T- the model item type
- All Implemented Interfaces:
FilterModel.Refresher<T>
- Enclosing interface:
- FilterModel<T>
public abstract static class FilterModel.AbstractRefresher<T>
extends Object
implements FilterModel.Refresher<T>
An abstract base implementation of
FilterModel.Refresher.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal is.codion.common.state.Stateasync()Sometimes we'd like to be able to refresh one or more models and perform some action on the refreshed data, after the refresh has finished, such as selecting a particular item or such.final is.codion.common.value.Value<Supplier<Collection<T>>>items()protected final voidnotifyFailure(Exception exception) Triggers the refresh failed eventprotected final voidTriggers the successful refresh eventfinal is.codion.common.state.StateObserverobserver()protected abstract voidprocessResult(Collection<T> items) Processes the refresh result, by replacing the current model items by the result items.final voidrefresh()Refreshes the items in the associated filter model.protected abstract voidrefreshAsync(Consumer<Collection<T>> afterRefresh) Performes an async refreshfinal is.codion.common.event.EventObserver<?>final is.codion.common.event.EventObserver<Exception>protected abstract voidrefreshSync(Consumer<Collection<T>> afterRefresh) Performs a sync refreshfinal voidrefreshThen(Consumer<Collection<T>> afterRefresh) Refreshes the data in this model.protected final voidsetRefreshing(boolean refreshing) Sets the refreshing (active) state of this refresherprotected abstract boolean
-
Constructor Details
-
AbstractRefresher
- Parameters:
items- supplies the items
-
-
Method Details
-
async
public final is.codion.common.state.State async()Description copied from interface:FilterModel.RefresherSometimes we'd like to be able to refresh one or more models and perform some action on the refreshed data, after the refresh has finished, such as selecting a particular item or such. This is quite difficult to achieve with asynchronous refresh enabled, so here's a way to temporarily disable asynchronous refresh, for a more predictable behaviour.- Specified by:
asyncin interfaceFilterModel.Refresher<T>- Returns:
- the State controlling whether asynchronous refreshing is enabled
- See Also:
-
items
- Specified by:
itemsin interfaceFilterModel.Refresher<T>- Returns:
- a Value controlling the item supplier for this refresher instance
-
refresh
public final void refresh()Description copied from interface:FilterModel.RefresherRefreshes the items in the associated filter model. Note that this method only throws exceptions when run synchronously.- Specified by:
refreshin interfaceFilterModel.Refresher<T>- See Also:
-
refreshThen
Description copied from interface:FilterModel.RefresherRefreshes the data in this model. Note that this method only throws exceptions when run synchronously. UseFilterModel.Refresher.refreshFailedEvent()to listen for exceptions that happen during asynchronous refresh.- Specified by:
refreshThenin interfaceFilterModel.Refresher<T>- Parameters:
afterRefresh- called after a successful refresh, may be null- See Also:
-
observer
public final is.codion.common.state.StateObserver observer()- Specified by:
observerin interfaceFilterModel.Refresher<T>- Returns:
- an observer active while a refresh is in progress
-
refreshEvent
public final is.codion.common.event.EventObserver<?> refreshEvent()- Specified by:
refreshEventin interfaceFilterModel.Refresher<T>- Returns:
- an observer notified each time this model has been successfully refreshed
- See Also:
-
refreshFailedEvent
- Specified by:
refreshFailedEventin interfaceFilterModel.Refresher<T>- Returns:
- an observer notified each time an asynchronous refresh has failed
- See Also:
-
setRefreshing
protected final void setRefreshing(boolean refreshing) Sets the refreshing (active) state of this refresher- Parameters:
refreshing- true if refresh is starting, false if ended
-
notifySuccess
protected final void notifySuccess()Triggers the successful refresh event- See Also:
-
notifyFailure
Triggers the refresh failed event- Parameters:
exception- the refresh exception- See Also:
-
supportsAsyncRefresh
protected abstract boolean supportsAsyncRefresh()- Returns:
- true if we're running on a thread which supports async refresh, such as a UI or application thread
-
refreshAsync
Performes an async refresh- Parameters:
afterRefresh- if specified will be called after a successful refresh
-
refreshSync
Performs a sync refresh- Parameters:
afterRefresh- if specified will be called after a successful refresh
-
processResult
Processes the refresh result, by replacing the current model items by the result items.- Parameters:
items- the items resulting from the refresh operation
-