Accessor - Vaadin Add-on Directory
Helper for updating a UI based on events from a subscriptionTo properly update something in a Vaadin UI from asynchronous handlers from some kind of subscription, you need to take care of locking the UI, reacting to exception if the UI is detached and make sure you unsubscribe when the UI or view is detached. All this easily adds up to quite many rows of boilerplate.
Accessor is a helper that takes care of all those details for you as long as you provide a callback for updating the UI, a callback for actually subscribing to the updates and a component to bind the life cycle to.
Basic usage follows this form:
```
Accessor.ofConsumer(this::addMessage)
.withSubscriber(DemoSubscription::subscribe)
.bind(this);
```
Source CodeIssue tracker
Accessor version 0.9.0.1
Repackaged to also include sources and javadocs
Accessor version 8.0.0.beta1
Ported to Vaadin 8