16 lines
423 B
Java
16 lines
423 B
Java
|
package io.grpc.internal;
|
||
|
|
||
|
import io.grpc.InternalChannelz;
|
||
|
import io.grpc.InternalInstrumented;
|
||
|
import io.grpc.Status;
|
||
|
import java.util.concurrent.ScheduledExecutorService;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface ServerTransport extends InternalInstrumented<InternalChannelz.SocketStats> {
|
||
|
ScheduledExecutorService getScheduledExecutorService();
|
||
|
|
||
|
void shutdown();
|
||
|
|
||
|
void shutdownNow(Status status);
|
||
|
}
|