18 lines
458 B
Java
18 lines
458 B
Java
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);
|
|
}
|
|
}
|