Class RpcInvocationStartedEvent
java.lang.Object
java.util.EventObject
com.vaadin.flow.server.communication.AbstractRpcInvocationEvent
com.vaadin.flow.server.communication.RpcInvocationStartedEvent
- All Implemented Interfaces:
Serializable
Event fired through the
service event bus
immediately before a client-to-server RPC invocation is handled, on the
request thread.- Since:
- 25.3
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionRpcInvocationStartedEvent(UI ui, String type, int nodeId, String name) Creates a new event. -
Method Summary
Methods inherited from class com.vaadin.flow.server.communication.AbstractRpcInvocationEvent
getName, getNodeId, getType, getUIMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
RpcInvocationStartedEvent
Creates a new event.- Parameters:
ui- the UI the invocation is handled against, notnulltype- the protocol-level invocation type, notnullnodeId- the id of the targetedStateNode, or-1if the invocation does not target a nodename- a human-readable identifier for the invocation, ornullif none applies
-