Package com.vaadin.server
Interface ClientConnector.AttachListener
-
- All Superinterfaces:
ConnectorEventListener,EventListener,Serializable,SerializableEventListener
- 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 ConnectorEventListener
Interface for listeningconnector attach events.
-
-
Field Summary
Fields Modifier and Type Field Description static MethodattachMethod
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidattach(ClientConnector.AttachEvent event)Called when a AttachListener is notified of a AttachEvent.
-
-
-
Field Detail
-
attachMethod
static final Method attachMethod
-
-
Method Detail
-
attach
void attach(ClientConnector.AttachEvent event)
Called when a AttachListener is notified of a AttachEvent.- Parameters:
event- The attach event that was fired.
-
-