Uses of Interface
org.eclipse.jetty.websocket.core.util.InvokerUtils.ParamIdentifier
Packages that use InvokerUtils.ParamIdentifier
Package
Description
-
Uses of InvokerUtils.ParamIdentifier in org.eclipse.jetty.ee10.websocket.jakarta.client
Constructors in org.eclipse.jetty.ee10.websocket.jakarta.client with parameters of type InvokerUtils.ParamIdentifierModifierConstructorDescriptionJakartaWebSocketClientFrameHandlerFactory
(JakartaWebSocketContainer container, InvokerUtils.ParamIdentifier paramIdentifier) -
Uses of InvokerUtils.ParamIdentifier in org.eclipse.jetty.ee10.websocket.jakarta.common
Fields in org.eclipse.jetty.ee10.websocket.jakarta.common declared as InvokerUtils.ParamIdentifierModifier and TypeFieldDescriptionprotected final InvokerUtils.ParamIdentifier
JakartaWebSocketFrameHandlerFactory.paramIdentifier
Constructors in org.eclipse.jetty.ee10.websocket.jakarta.common with parameters of type InvokerUtils.ParamIdentifierModifierConstructorDescriptionJakartaWebSocketFrameHandlerFactory
(JakartaWebSocketContainer container, InvokerUtils.ParamIdentifier paramIdentifier) -
Uses of InvokerUtils.ParamIdentifier in org.eclipse.jetty.ee10.websocket.jakarta.server.internal
Classes in org.eclipse.jetty.ee10.websocket.jakarta.server.internal that implement InvokerUtils.ParamIdentifierModifier and TypeClassDescriptionclass
Method argument identifier forPathParam
annotations. -
Uses of InvokerUtils.ParamIdentifier in org.eclipse.jetty.websocket.core.util
Fields in org.eclipse.jetty.websocket.core.util declared as InvokerUtils.ParamIdentifierModifier and TypeFieldDescriptionstatic final InvokerUtils.ParamIdentifier
InvokerUtils.PARAM_IDENTITY
Methods in org.eclipse.jetty.websocket.core.util with parameters of type InvokerUtils.ParamIdentifierModifier and TypeMethodDescriptionstatic MethodHandle
InvokerUtils.mutatedInvoker
(MethodHandles.Lookup lookup, Class<?> targetClass, Method method, InvokerUtils.ParamIdentifier paramIdentifier, String[] namedVariables, InvokerUtils.Arg... callingArgs) Create a MethodHandle that performs the following layersMethodHandles.permuteArguments(MethodHandle, MethodType, int...)
- moving calling Args around to fit actual actual method parameter arguments (in proper order), with remaining (unused) calling args afterwordsMethodHandles.dropArguments(MethodHandle, int, Class[])
- to drop the unused calling argsMethodHandle.invoke(Object...)
- to call the specific methodstatic MethodHandle
InvokerUtils.optionalMutatedInvoker
(MethodHandles.Lookup lookup, Class<?> targetClass, Method method, InvokerUtils.ParamIdentifier paramIdentifier, String[] namedVariables, InvokerUtils.Arg... callingArgs) Create an optional MethodHandle that performs the following layers.