com.vaadin.flow.server.communication.rpc.
Interface RpcInvocationHandler
-
All Superinterfaces:
All Known Implementing Classes:
AbstractRpcInvocationHandler, AttachExistingElementRpcHandler, AttachTemplateChildRpcHandler, EventRpcHandler, MapSyncRpcHandler, NavigationRpcHandler, PublishedServerEventHandlerRpcHandler
public interface RpcInvocationHandler extends Serializable
RPC invocation handler interface.
Each instance must return unique rpc type (see
getRpcType()
and handle aJsonObject
RPC data usinghandle(UI, JsonObject)
method.Since:
1.0
Author:
Vaadin Ltd
-
-
Method Detail
-
getRpcType
String getRpcType()
Gets unique RPC type which this handler is applicable for.
Returns:
the unique rpc type
-
-