public uint MaxConcurrentStreamsLowWatermark { get; set; }
The low watermark of max number of concurrent streams in a channel.
New channel will be created once it get hit, until we reach the max size
of the channel pool.
[[["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-04-17 UTC."],[[["The `ChannelPoolConfig` class, part of the `Google.Api.Gax.Grpc.Gcp` namespace, is a sealed class that manages the configuration of a channel pool, implementing `Protobuf.IMessage` and `Protobuf.IBufferMessage`."],["The class provides constructors for creating new `ChannelPoolConfig` objects, either as a default instance or by cloning another `ChannelPoolConfig` object."],["The class contains three configurable fields: `IdleTimeoutFieldNumber` which represents the idle timeout, `MaxConcurrentStreamsLowWatermarkFieldNumber` which represents the low watermark of concurrent streams, and `MaxSizeFieldNumber` which represents the maximum size of the channel pool, all represented by their field number."],["The class defines properties such as `Descriptor`, `IdleTimeout`, `MaxConcurrentStreamsLowWatermark`, `MaxSize`, and `Parser`, allowing access to the configuration details of a channel pool, which provides the max number of channels, the low watermark for concurrent streams, and the idle timeout of channels."],["The `ChannelPoolConfig` class includes several methods, such as `CalculateSize()`, `Clone()`, `Equals()`, `GetHashCode()`, `MergeFrom()`, `ToString()`, and `WriteTo()`, allowing for various operations like size calculation, object comparison, merging configurations, and serialization/deserialization."]]],[]]