Table of Contents

Class CatalogLimits

Namespace
Typhon.Protocol
Assembly
Typhon.Protocol.dll

Server-wide ceilings a client acts on (W30). Everything else the server enforces stays out of the catalog.

public sealed class CatalogLimits
Inheritance
CatalogLimits
Inherited Members

Constructors

CatalogLimits()

public CatalogLimits()

Properties

ClientMessageBytes

The largest client-to-server message after HELLO, in bytes; the SDK batches COMMANDS under it or is closed with 1009.

public int ClientMessageBytes { get; init; }

Property Value

int

FrameBytes

The largest server-to-client message, in bytes; a .NET or TCP client sizes its receive buffer once from it.

public int FrameBytes { get; init; }

Property Value

int

ResumeGraceMs

How long a dropped session can be resumed, in milliseconds; the SDK chooses between resuming and a fresh connection from it.

public int ResumeGraceMs { get; init; }

Property Value

int