Merge branch 'jetty-10.0.x-3167-websocket-mapping' into jetty-10.0.x-3167-2175-websocket-close
This commit is contained in:
commit
aedf17b020
|
@ -67,7 +67,7 @@ import org.eclipse.jetty.websocket.core.Frame;
|
|||
* Factory to create {@link JettyWebSocketFrameHandler} instances suitable for
|
||||
* use with jetty-native websocket API.
|
||||
* <p>
|
||||
* Will create a {@link FrameHandler} suitable for use with classes/objects that:
|
||||
* Will create a {@link org.eclipse.jetty.websocket.core.FrameHandler} suitable for use with classes/objects that:
|
||||
* </p>
|
||||
* <ul>
|
||||
* <li>Is @{@link org.eclipse.jetty.websocket.api.annotations.WebSocket} annotated</li>
|
||||
|
|
|
@ -104,6 +104,10 @@ public class InvokerUtils
|
|||
* Might need to drop calling args and/or reorder the calling args to fit
|
||||
* the actual method being called.
|
||||
* </p>
|
||||
* @param targetClass the target class for invocations of the resulting MethodHandle (also known as parameter 0)
|
||||
* @param method the method to invoke
|
||||
* @param callingArgs the calling arguments
|
||||
* @return the MethodHandle for this set of CallingArgs
|
||||
*/
|
||||
public static MethodHandle mutatedInvoker(Class<?> targetClass, Method method, Arg... callingArgs)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue