Module is.codion.common.model
Package is.codion.common.model
Class FilteredModel.AbstractRefresher<T>
java.lang.Object
is.codion.common.model.FilteredModel.AbstractRefresher<T>
- Type Parameters:
T- the model item type
- All Implemented Interfaces:
FilteredModel.Refresher<T>
- Enclosing interface:
- FilteredModel<T>
public abstract static class FilteredModel.AbstractRefresher<T>
extends Object
implements FilteredModel.Refresher<T>
An abstract base implementation of
FilteredModel.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>>>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 filtered model.protected abstract voidrefreshAsync(Consumer<Collection<T>> afterRefresh) Performes an async refreshfinal is.codion.common.event.EventObserver<?>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:
itemSupplier- the item supplier
-
-
Method Details
-
async
public final is.codion.common.state.State async()Description copied from interface:FilteredModel.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 interfaceFilteredModel.Refresher<T>- Returns:
- the State controlling whether asynchronous refreshing is enabled
- See Also:
-
itemSupplier
- Specified by:
itemSupplierin interfaceFilteredModel.Refresher<T>- Returns:
- a Value controlling the item supplier for this refresher instance
-
refresh
public final void refresh()Description copied from interface:FilteredModel.RefresherRefreshes the items in the associated filtered model. Note that this method only throws exceptions when run synchronously.- Specified by:
refreshin interfaceFilteredModel.Refresher<T>- See Also:
-
refreshThen
Description copied from interface:FilteredModel.RefresherRefreshes the data in this model. Note that this method only throws exceptions when run synchronously. UseFilteredModel.Refresher.refreshFailedEvent()to listen for exceptions that happen during asynchronous refresh.- Specified by:
refreshThenin interfaceFilteredModel.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 interfaceFilteredModel.Refresher<T>- Returns:
- an observer active while a refresh is in progress
-
refreshEvent
public final is.codion.common.event.EventObserver<?> refreshEvent()- Specified by:
refreshEventin interfaceFilteredModel.Refresher<T>- Returns:
- an observer notified each time this model has been successfully refreshed
- See Also:
-
refreshFailedEvent
- Specified by:
refreshFailedEventin interfaceFilteredModel.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
-