Class PayloadLimitsOptions
- Namespace
- Temporalio.Client
- Assembly
- Temporalio.dll
Payload size-limit options for a connection.
public class PayloadLimitsOptions : ICloneable
- Inheritance
-
PayloadLimitsOptions
- Implements
- Inherited Members
Remarks
WARNING: This API is experimental and may change in the future.
Properties
MemoWarnSize
Gets or sets the warning threshold, in bytes, for outbound memo size. Over-threshold
memos are logged but still sent to the server. Defaults to 2KiB; set to 0 to
disable.
public int MemoWarnSize { get; set; }
Property Value
PayloadsWarnSize
Gets or sets the warning threshold, in bytes, for the size of an outbound payload-bearing
field. Over-threshold fields are logged but still sent to the server. Defaults to 512KiB;
set to 0 to disable.
public int PayloadsWarnSize { get; set; }
Property Value
Methods
Clone()
Create a shallow copy of these options.
public virtual object Clone()
Returns
- object
A shallow copy of these options.