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 classCompositeCallCredentialsUses multipleCallCredentialsas if they were one.Fields in io.grpc declared as CallCredentials Modifier and Type Field Description private CallCredentialsCompositeChannelCredentials. callCredentials(package private) CallCredentialsCallOptions.Builder. credentialsprivate CallCredentialsCallOptions. credentialsprivate CallCredentialsCompositeCallCredentials. credentials1private CallCredentialsCompositeCallCredentials. credentials2Methods in io.grpc that return CallCredentials Modifier and Type Method Description CallCredentialsCompositeChannelCredentials. getCallCredentials()CallCredentialsCallOptions. getCredentials()Returns the call credentials.Methods in io.grpc with parameters of type CallCredentials Modifier and Type Method Description static ChannelCredentialsCompositeChannelCredentials. create(ChannelCredentials channelCreds, CallCredentials callCreds)CallOptionsCallOptions. withCallCredentials(CallCredentials credentials)Returns a newCallOptionswith 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) CallCredentialsClientTransportFactory.SwapChannelCredentialsResult. callCredentials(package private) CallCredentialsManagedChannelImplBuilder. callCredentialsprivate CallCredentialsCallCredentialsApplyingTransportFactory. channelCallCredentialsConstructors 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 CallCredentialsProtocolNegotiators.FromChannelCredentialsResult. callCredentialsMethods in io.grpc.netty with parameters of type CallCredentials Modifier and Type Method Description ProtocolNegotiators.FromChannelCredentialsResultProtocolNegotiators.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 SAbstractStub. withCallCredentials(CallCredentials credentials)Returns a new stub that uses the given call credentials.
-