Class FlowControlSettings (4.2.0)

public sealed class FlowControlSettings

Settings used to control data flow.

Inheritance

Object > FlowControlSettings

Namespace

Google.Api.Gax

Assembly

Google.Api.Gax.dll

Constructors

FlowControlSettings(Nullable<Int64>, Nullable<Int64>)

public FlowControlSettings(long? maxOutstandingElementCount, long? maxOutstandingByteCount)

Creates a new instance with the specified settings.

Parameters
NameDescription
maxOutstandingElementCountNullable<Int64>

The maximum number of elements that can be outstanding before data flow is restricted, or null if there is no specified limit.

maxOutstandingByteCountNullable<Int64>

The maximum number of bytes that can be outstanding before data flow is restricted, or null if there is no specified limit.

Properties

MaxOutstandingByteCount

public long? MaxOutstandingByteCount { get; }

The maximum number of bytes that can be outstanding before data flow is restricted, or null if there is no specified limit.

Property Value
TypeDescription
Nullable<Int64>

MaxOutstandingElementCount

public long? MaxOutstandingElementCount { get; }

The maximum number of elements that can be outstanding before data flow is restricted, or null if there is no specified limit.

Property Value
TypeDescription
Nullable<Int64>