Package com.vaadin.classic.v8.server
Interface ClientConnector.AttachListener
-
- All Superinterfaces:
com.vaadin.flow.component.ComponentEventListener<ClientConnector.AttachEvent>,java.util.EventListener,java.io.Serializable
- Enclosing interface:
- ClientConnector
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ClientConnector.AttachListener extends com.vaadin.flow.component.ComponentEventListener<ClientConnector.AttachEvent>
Interface for listeningconnector attach events. This can be replaced withComponentEventListener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidattach(ClientConnector.AttachEvent event)Called when a AttachListener is notified of a AttachEvent.default voidonComponentEvent(ClientConnector.AttachEvent event)
-
-
-
Method Detail
-
onComponentEvent
default void onComponentEvent(ClientConnector.AttachEvent event)
- Specified by:
onComponentEventin interfacecom.vaadin.flow.component.ComponentEventListener<ClientConnector.AttachEvent>
-
attach
void attach(ClientConnector.AttachEvent event)
Called when a AttachListener is notified of a AttachEvent.- Parameters:
event- The attach event that was fired.
-
-