what-the-bank/sources/io/grpc/HandlerRegistry.java

18 lines
458 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.grpc;
import java.util.Collections;
import java.util.List;
/* loaded from: classes6.dex */
public abstract class HandlerRegistry {
public abstract ServerMethodDefinition<?, ?> lookupMethod(String str, String str2);
public List<ServerServiceDefinition> getServices() {
return Collections.emptyList();
}
public final ServerMethodDefinition<?, ?> lookupMethod(String str) {
return lookupMethod(str, null);
}
}