com.vaadin.flow.component.page.
Package com.vaadin.flow.component.page
Annotation Interface Push
Configures automatic server push. The annotation should be placed on your
AppShellConfigurator class. If some other push mode is desired, it can be
passed as a parameter, e.g. @Push(PushMode.MANUAL)
.
Since:
1.0.
Author:
Vaadin Ltd
See Also:
-
Optional Element Summary
Optional Elements
-
Element Details
-
value
PushMode valueThe
PushMode
to use for the annotated root navigation target (or custom UI). The default push mode when this annotation is present isPushMode.AUTOMATIC
.Returns:
the push mode to use
Default:
AUTOMATIC
-
transport
Transport transportTransport type used for the push for the annotated root navigation target (or custom UI). The default transport type when this annotation is present is
Transport.WEBSOCKET_XHR
.Returns:
the transport type to use
Default:
WEBSOCKET_XHR
-