Uses of Interface
io.grpc.internal.ClientTransport.PingCallback
-
Packages that use ClientTransport.PingCallback Package Description io.grpc.inprocess The in-process transport which is for when a server is in the same process as the client.io.grpc.internal Interfaces and implementations that are internal to gRPC.io.grpc.netty The main transport implementation based on Netty, for both the client and the server. -
-
Uses of ClientTransport.PingCallback in io.grpc.inprocess
Methods in io.grpc.inprocess with parameters of type ClientTransport.PingCallback Modifier and Type Method Description voidInProcessTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor) -
Uses of ClientTransport.PingCallback in io.grpc.internal
Fields in io.grpc.internal with type parameters of type ClientTransport.PingCallback Modifier and Type Field Description private java.util.Map<ClientTransport.PingCallback,java.util.concurrent.Executor>Http2Ping. callbacksThe registered callbacks and the executor used to invoke them.Methods in io.grpc.internal with parameters of type ClientTransport.PingCallback Modifier and Type Method Description voidHttp2Ping. addCallback(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)Registers a callback that is invoked when the ping operation completes.private static java.lang.RunnableHttp2Ping. asRunnable(ClientTransport.PingCallback callback, long roundTripTimeNanos)Returns a runnable that, when run, invokes the given callback, providing the given round-trip duration.private static java.lang.RunnableHttp2Ping. asRunnable(ClientTransport.PingCallback callback, java.lang.Throwable failureCause)Returns a runnable that, when run, invokes the given callback, providing the given cause of failure.static voidHttp2Ping. notifyFailed(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor, java.lang.Throwable cause)Notifies the given callback that the ping operation failed.voidClientTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)Pings a remote endpoint.voidDelayedClientTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)voidFailingClientTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)voidForwardingConnectionClientTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor) -
Uses of ClientTransport.PingCallback in io.grpc.netty
Fields in io.grpc.netty declared as ClientTransport.PingCallback Modifier and Type Field Description private ClientTransport.PingCallbackSendPingCommand. callbackMethods in io.grpc.netty that return ClientTransport.PingCallback Modifier and Type Method Description (package private) ClientTransport.PingCallbackSendPingCommand. callback()Methods in io.grpc.netty with parameters of type ClientTransport.PingCallback Modifier and Type Method Description voidNettyClientTransport. ping(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)Constructors in io.grpc.netty with parameters of type ClientTransport.PingCallback Constructor Description SendPingCommand(ClientTransport.PingCallback callback, java.util.concurrent.Executor executor)
-