Show / Hide Table of Contents

Class FlowControlSettings

Settings used to control data flow.

Inheritance
System.Object
FlowControlSettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Api.Gax
Assembly: Google.Api.Gax.dll
Syntax
public sealed class FlowControlSettings

Constructors

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

Creates a new instance with the specified settings.

Declaration
public FlowControlSettings(long? maxOutstandingElementCount, long? maxOutstandingByteCount)
Parameters
Type Name Description
System.Nullable<System.Int64> maxOutstandingElementCount

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

System.Nullable<System.Int64> maxOutstandingByteCount

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

Properties

MaxOutstandingByteCount

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

Declaration
public long? MaxOutstandingByteCount { get; }
Property Value
Type Description
System.Nullable<System.Int64>

MaxOutstandingElementCount

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

Declaration
public long? MaxOutstandingElementCount { get; }
Property Value
Type Description
System.Nullable<System.Int64>
Back to top