Vaadin 10 doesn't sync state with client until a user does something in the

In Vaadin 8 I called setFilter and state (visible rows) of Grid changed immediately.
In Vaadin 10, grid changes set of visible rows only after I (e.g. click into text field on the form).
Maybe in Vaadin 10, an additional method (to start sync) should be called ?

Solution:
filter.setValueChangeMode(ValueChangeMode.EAGER);