Uses of Class
org.eclipse.jetty.websocket.core.util.InvokerUtils.Arg
Package
Description
-
Uses of InvokerUtils.Arg in org.eclipse.jetty.ee10.websocket.jakarta.server.internal
Modifier and TypeMethodDescriptionPathParamIdentifier.getParamArg
(Method method, Class<?> paramType, int idx) -
Uses of InvokerUtils.Arg in org.eclipse.jetty.websocket.core.util
Modifier and TypeMethodDescriptionInvokerUtils.Arg.convertible()
InvokerUtils.ParamIdentifier.getParamArg
(Method method, Class<?> paramType, int idx) InvokerUtils.Arg.required()
Modifier and TypeMethodDescriptionboolean
InvokerUtils.Arg.matches
(InvokerUtils.Arg other) static MethodHandle
InvokerUtils.mutatedInvoker
(MethodHandles.Lookup lookup, Class<?> targetClass, Method method, InvokerUtils.Arg... callingArgs) Build a MethodHandle that can call the method with the calling args provided.static 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.Arg... callingArgs) static 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.