Uses of Class
io.grpc.CallCredentials
-
Packages that use CallCredentials Package Description io.grpc The gRPC core public API.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.io.grpc.stub API for the Stub layer. -
-
Uses of CallCredentials in io.grpc
Subclasses of CallCredentials in io.grpc Modifier and Type Class Description class
CompositeCallCredentials
Uses multipleCallCredentials
as if they were one.Fields in io.grpc declared as CallCredentials Modifier and Type Field Description private CallCredentials
CompositeChannelCredentials. callCredentials
(package private) CallCredentials
CallOptions.Builder. credentials
private CallCredentials
CallOptions. credentials
private CallCredentials
CompositeCallCredentials. credentials1
private CallCredentials
CompositeCallCredentials. credentials2
Methods in io.grpc that return CallCredentials Modifier and Type Method Description CallCredentials
CompositeChannelCredentials. getCallCredentials()
CallCredentials
CallOptions. getCredentials()
Returns the call credentials.Methods in io.grpc with parameters of type CallCredentials Modifier and Type Method Description static ChannelCredentials
CompositeChannelCredentials. create(ChannelCredentials channelCreds, CallCredentials callCreds)
CallOptions
CallOptions. withCallCredentials(CallCredentials credentials)
Returns a newCallOptions
with the given call credentials.Constructors in io.grpc with parameters of type CallCredentials Constructor Description CompositeCallCredentials(CallCredentials creds1, CallCredentials creds2)
CompositeChannelCredentials(ChannelCredentials channelCreds, CallCredentials callCreds)
-
Uses of CallCredentials in io.grpc.internal
Fields in io.grpc.internal declared as CallCredentials Modifier and Type Field Description (package private) CallCredentials
ClientTransportFactory.SwapChannelCredentialsResult. callCredentials
(package private) CallCredentials
ManagedChannelImplBuilder. callCredentials
private CallCredentials
CallCredentialsApplyingTransportFactory. channelCallCredentials
Constructors in io.grpc.internal with parameters of type CallCredentials Constructor Description CallCredentialsApplyingTransportFactory(ClientTransportFactory delegate, CallCredentials channelCallCredentials, java.util.concurrent.Executor appExecutor)
ManagedChannelImplBuilder(java.lang.String target, ChannelCredentials channelCreds, CallCredentials callCreds, ManagedChannelImplBuilder.ClientTransportFactoryBuilder clientTransportFactoryBuilder, ManagedChannelImplBuilder.ChannelBuilderDefaultPortProvider channelBuilderDefaultPortProvider)
Creates a new managed channel builder with a target string, which can be either a validNameResolver
-compliant URI, or an authority string.ManagedChannelImplBuilder(java.net.SocketAddress directServerAddress, java.lang.String authority, ChannelCredentials channelCreds, CallCredentials callCreds, ManagedChannelImplBuilder.ClientTransportFactoryBuilder clientTransportFactoryBuilder, ManagedChannelImplBuilder.ChannelBuilderDefaultPortProvider channelBuilderDefaultPortProvider)
Creates a new managed channel builder with the given server address, authority string of the channel.SwapChannelCredentialsResult(ClientTransportFactory transportFactory, CallCredentials callCredentials)
-
Uses of CallCredentials in io.grpc.netty
Fields in io.grpc.netty declared as CallCredentials Modifier and Type Field Description CallCredentials
ProtocolNegotiators.FromChannelCredentialsResult. callCredentials
Methods in io.grpc.netty with parameters of type CallCredentials Modifier and Type Method Description ProtocolNegotiators.FromChannelCredentialsResult
ProtocolNegotiators.FromChannelCredentialsResult. withCallCredentials(CallCredentials callCreds)
Constructors in io.grpc.netty with parameters of type CallCredentials Constructor Description FromChannelCredentialsResult(ProtocolNegotiator.ClientFactory negotiator, CallCredentials creds, java.lang.String error)
NettyChannelBuilder(java.lang.String target, ChannelCredentials channelCreds, CallCredentials callCreds, ProtocolNegotiator.ClientFactory negotiator)
NettyChannelBuilder(java.net.SocketAddress address, ChannelCredentials channelCreds, CallCredentials callCreds, ProtocolNegotiator.ClientFactory negotiator)
-
Uses of CallCredentials in io.grpc.stub
Methods in io.grpc.stub with parameters of type CallCredentials Modifier and Type Method Description S
AbstractStub. withCallCredentials(CallCredentials credentials)
Returns a new stub that uses the given call credentials.
-