PipeOptions 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 매개 변수를 사용하여 PipeOptions 클래스의 새 인스턴스를 초기화합니다.
public PipeOptions (System.Buffers.MemoryPool<byte> pool = default, System.IO.Pipelines.PipeScheduler readerScheduler = default, System.IO.Pipelines.PipeScheduler writerScheduler = default, long pauseWriterThreshold = 32768, long resumeWriterThreshold = 16384, int minimumSegmentSize = 2048, bool useSynchronizationContext = true);
public PipeOptions (System.Buffers.MemoryPool<byte> pool = default, System.IO.Pipelines.PipeScheduler readerScheduler = default, System.IO.Pipelines.PipeScheduler writerScheduler = default, long pauseWriterThreshold = -1, long resumeWriterThreshold = -1, int minimumSegmentSize = -1, bool useSynchronizationContext = true);
public PipeOptions (System.Buffers.MemoryPool<byte>? pool = default, System.IO.Pipelines.PipeScheduler? readerScheduler = default, System.IO.Pipelines.PipeScheduler? writerScheduler = default, long pauseWriterThreshold = -1, long resumeWriterThreshold = -1, int minimumSegmentSize = -1, bool useSynchronizationContext = true);
new System.IO.Pipelines.PipeOptions : System.Buffers.MemoryPool<byte> * System.IO.Pipelines.PipeScheduler * System.IO.Pipelines.PipeScheduler * int64 * int64 * int * bool -> System.IO.Pipelines.PipeOptions
Public Sub New (Optional pool As MemoryPool(Of Byte) = Nothing, Optional readerScheduler As PipeScheduler = Nothing, Optional writerScheduler As PipeScheduler = Nothing, Optional pauseWriterThreshold As Long = 32768, Optional resumeWriterThreshold As Long = 16384, Optional minimumSegmentSize As Integer = 2048, Optional useSynchronizationContext As Boolean = true)
Public Sub New (Optional pool As MemoryPool(Of Byte) = Nothing, Optional readerScheduler As PipeScheduler = Nothing, Optional writerScheduler As PipeScheduler = Nothing, Optional pauseWriterThreshold As Long = -1, Optional resumeWriterThreshold As Long = -1, Optional minimumSegmentSize As Integer = -1, Optional useSynchronizationContext As Boolean = true)
매개 변수
- pool
- MemoryPool<Byte>
버퍼 관리에 사용할 메모리 블록의 풀입니다.
- readerScheduler
- PipeScheduler
PipeReader 콜백과 비동기 연속을 실행하는 데 사용할 PipeScheduler입니다.
- writerScheduler
- PipeScheduler
PipeWriter 콜백과 비동기 연속을 실행하는 데 사용되는 PipeScheduler입니다.
- pauseWriterThreshold
- Int64
FlushAsync(CancellationToken)가 차단을 시작하기 전 Pipe의 바이트 수입니다. 값을 0으로 설정하면 FlushAsync(CancellationToken)에서 차단되지 않으므로, Pipe의 바이트 수를 무제한으로 설정하는데 효율적입니다.
- resumeWriterThreshold
- Int64
FlushAsync(CancellationToken)가 차단을 중지할 때 Pipe의 바이트 수입니다.
- minimumSegmentSize
- Int32
pool
에서 요청한 세그먼트의 최소 크기입니다.
- useSynchronizationContext
- Boolean
비동기 연속을 캡처된 SynchronizationContext에서 실행해야 할 경우에는 true
이며, 그렇지 않으면 false
입니다. 이는 ReaderScheduler 및 WriterScheduler에 지정된 스케줄러보다 우선합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET