Optimistic updates plugin

Plugin for performing optimistic updates

Optimistic update - update where state of UI is updated before call to server. This makes apps feels fast like native. However optimistic updates has to be reverted if network call failed. This plugin takes care of this.

E.g. Todo item is first added to UI and after POST request is sent to server expecting that DB will be updated.

Last updated