Show / Hide Table of Contents

Class BidirectionalStreamingSettings

Settings for bidirectional streaming.

Inheritance
System.Object
BidirectionalStreamingSettings
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.Grpc
Assembly: Google.Api.Gax.Grpc.dll
Syntax
public sealed class BidirectionalStreamingSettings

Constructors

BidirectionalStreamingSettings(Int32)

Configure settings for bidirectional streaming.

Declaration
public BidirectionalStreamingSettings(int bufferedClientWriterCapacity)
Parameters
Type Name Description
System.Int32 bufferedClientWriterCapacity

The capacity of the write buffer.

Properties

BufferedClientWriterCapacity

The capacity of the write buffer, that locally buffers streaming requests before they are sent to the server.

Declaration
public int BufferedClientWriterCapacity { get; }
Property Value
Type Description
System.Int32
Back to top