Add a callback that can intercept channel creation.
This can be used for advanced configuration like setting the netty event loop. The
callback will be invoked with a fully configured channel builder, which the callback can
augment or replace.
By setting a channelPrimer, the ChannelPool created by the provider will be refreshing
ChannelPool. channelPrimer will be invoked periodically when the channels are refreshed
This is public only for technical reasons, for advanced usage.
Sets the Executor for this TransportChannelProvider.
This is optional; if it is not provided, needsExecutor() will return true, meaning that an
Executor must be provided when getChannel is called on the constructed
TransportChannelProvider instance. Note: GrpcTransportProvider will automatically provide its
own Executor in this circumstance when it calls getChannel.
Sets the HeaderProvider for this TransportChannelProvider.
This is optional; if it is not provided, needsHeaders() will return true, meaning that
headers must be provided when getChannel is called on the constructed
TransportChannelProvider instance.
Sets the GrpcInterceptorProvider for this TransportChannelProvider.
The provider will be called once for each underlying gRPC ManagedChannel that is created.
It is recommended to return a new list of new interceptors on each call so that interceptors
are not shared among channels, but this is not required.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The latest version of the `InstantiatingGrpcChannelProvider.Builder` is 2.63.1, with numerous previous versions available, ranging back to 2.7.1."],["The `InstantiatingGrpcChannelProvider.Builder` class provides methods for configuring and building gRPC channel providers, allowing for detailed customization of channel behavior."],["Deprecated methods, `getPoolSize()`, `setChannelsPerCpu(double multiplier)`, `setChannelsPerCpu(double multiplier, int maxChannels)`, `setExecutorProvider(ExecutorProvider executorProvider)`, `setPoolSize(int poolSize)`, have all been superseded by `setChannelPoolSettings(ChannelPoolSettings settings)` for channel pool configuration."],["This class allows for control over various aspects of gRPC channels such as keep-alive settings, message and metadata size limits, direct path configuration, and channel interception."],["Developers can customize the behavior of the channel via methods such as `setChannelConfigurator`, `setChannelPrimer`, and `setInterceptorProvider`."]]],[]]