Prefetch state changes when the user mouses over an HTML element. Fantastico!
You can prefetch an Action's results on mouseOver using the .prefetch
modifier.
In the example here, the togglePreview
action will be prefetched and invoked when the user mouses over the button. The results of the fetch are not displayed until the user clicks the 'Show Preview' button.
Prefetching works well for actions that do not perform any side effects, such as mutating session data or writing to a database. If the action you are "pre-fetching" does have side effects, you may encounter unpredictable results.