System.Threading.Channels.BoundedChannelOptions
Provides options that control the behavior of bounded Channel<T> instances.
namespace System.Threading.Channels
{
public sealed class BoundedChannelOptions : ChannelOptions
{
public int Capacity { get; set; }
public BoundedChannelFullMode FullMode { get; set; }
public BoundedChannelOptions(int capacity);
}
}