23 lines
614 B
Java
23 lines
614 B
Java
|
package io.grpc.internal;
|
||
|
|
||
|
import io.grpc.InternalChannelz;
|
||
|
import io.grpc.InternalInstrumented;
|
||
|
import java.io.IOException;
|
||
|
import java.net.SocketAddress;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface InternalServer {
|
||
|
SocketAddress getListenSocketAddress();
|
||
|
|
||
|
List<? extends SocketAddress> getListenSocketAddresses();
|
||
|
|
||
|
InternalInstrumented<InternalChannelz.SocketStats> getListenSocketStats();
|
||
|
|
||
|
List<InternalInstrumented<InternalChannelz.SocketStats>> getListenSocketStatsList();
|
||
|
|
||
|
void shutdown();
|
||
|
|
||
|
void start(ServerListener serverListener) throws IOException;
|
||
|
}
|