다음을 통해 공유


PipeOptions 생성자

정의

지정된 매개 변수를 사용하여 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입니다. 이는 ReaderSchedulerWriterScheduler에 지정된 스케줄러보다 우선합니다.

적용 대상