Dreamine.Communication.Abstractions 1.0.2
Dreamine.Communication.Abstractions 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
OutboundQueueOptions.cs
이 파일의 문서화 페이지로 가기
2
4
13public sealed class OutboundQueueOptions
14{
25
34 public int MaxQueueSize { get; set; } = 10_000;
35
44 public bool DropOldestWhenFull { get; set; } = true;
45
54 public TimeSpan? MaxMessageAge { get; set; } = TimeSpan.FromSeconds(30);
55
64 public bool FlushOnReconnect { get; set; } = true;
65}