Merge branch 'jetty-10.0.x-3167-websocket-mapping' into jetty-10.0.x-3167-2175-websocket-close

This commit is contained in:
Greg Wilkins 2019-01-15 14:13:55 +11:00
commit aedf17b020
2 changed files with 5 additions and 1 deletions

View File

@ -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 &#64;{@link org.eclipse.jetty.websocket.api.annotations.WebSocket} annotated</li>

View File

@ -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)
{