Lookup a ServerMethodDefinition by its fully-qualified name. @param methodName to lookup ServerMethodDefinition for. @param authority the authority for the desired method (to do virtual hosting). If null the first matching method will be returned. @return the resolved
(
String methodName, @Nullable String authority)
| 45 | * @return the resolved method or {@code null} if no method for that name exists. |
| 46 | */ |
| 47 | @Nullable |
| 48 | public abstract ServerMethodDefinition<?, ?> lookupMethod( |
| 49 | String methodName, @Nullable String authority); |
| 50 | |
| 51 | /** |
| 52 | * Lookup a {@link ServerMethodDefinition} by its fully-qualified name. |
nothing calls this directly
no outgoing calls
no test coverage detected