DataflowBlock.Receive 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Receive<TOutput>(ISourceBlock<TOutput>) |
지정된 소스에서 값을 동기적으로 받습니다. |
Receive<TOutput>(ISourceBlock<TOutput>, CancellationToken) |
지정된 소스에서 값을 동기적으로 받고 작업을 취소하는 토큰을 제공합니다. |
Receive<TOutput>(ISourceBlock<TOutput>, TimeSpan) |
지정된 소스에서 값을 동기적으로 받으며 최적의 시간 초과 기간을 관찰합니다. |
Receive<TOutput>(ISourceBlock<TOutput>, TimeSpan, CancellationToken) |
지정된 원본에서 값을 동기적으로 받으면서 작업을 취소하는 토큰을 제공하고 최적의 시간 초과 간격을 관찰합니다. |
Receive<TOutput>(ISourceBlock<TOutput>)
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
지정된 소스에서 값을 동기적으로 받습니다.
public:
generic <typename TOutput>
[System::Runtime::CompilerServices::Extension]
static TOutput Receive(System::Threading::Tasks::Dataflow::ISourceBlock<TOutput> ^ source);
public static TOutput Receive<TOutput> (this System.Threading.Tasks.Dataflow.ISourceBlock<TOutput> source);
static member Receive : System.Threading.Tasks.Dataflow.ISourceBlock<'Output> -> 'Output
<Extension()>
Public Function Receive(Of TOutput) (source As ISourceBlock(Of TOutput)) As TOutput
형식 매개 변수
- TOutput
소스에 포함된 데이터 형식입니다.
매개 변수
- source
- ISourceBlock<TOutput>
값을 받는 소스입니다.
반환
받은 값입니다.
예외
source
이(가) null
인 경우
항목을 소스에서 받을 수 없습니다.
적용 대상
Receive<TOutput>(ISourceBlock<TOutput>, CancellationToken)
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
지정된 소스에서 값을 동기적으로 받고 작업을 취소하는 토큰을 제공합니다.
public:
generic <typename TOutput>
[System::Runtime::CompilerServices::Extension]
static TOutput Receive(System::Threading::Tasks::Dataflow::ISourceBlock<TOutput> ^ source, System::Threading::CancellationToken cancellationToken);
public static TOutput Receive<TOutput> (this System.Threading.Tasks.Dataflow.ISourceBlock<TOutput> source, System.Threading.CancellationToken cancellationToken);
static member Receive : System.Threading.Tasks.Dataflow.ISourceBlock<'Output> * System.Threading.CancellationToken -> 'Output
<Extension()>
Public Function Receive(Of TOutput) (source As ISourceBlock(Of TOutput), cancellationToken As CancellationToken) As TOutput
형식 매개 변수
- TOutput
소스에 포함된 데이터 형식입니다.
매개 변수
- source
- ISourceBlock<TOutput>
값을 받는 소스입니다.
- cancellationToken
- CancellationToken
받기 작업을 취소하는 데 사용할 토큰입니다.
반환
받은 값입니다.
예외
source
이(가) null
인 경우
항목을 소스에서 받을 수 없습니다.
소스에서 항목을 받기 전에 작업이 취소되었습니다.
설명
원본이 이 작업에서 받은 항목을 성공적으로 제공하면 동시 취소 요청이 발생하더라도 해당 항목이 반환됩니다.
적용 대상
Receive<TOutput>(ISourceBlock<TOutput>, TimeSpan)
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
지정된 소스에서 값을 동기적으로 받으며 최적의 시간 초과 기간을 관찰합니다.
public:
generic <typename TOutput>
[System::Runtime::CompilerServices::Extension]
static TOutput Receive(System::Threading::Tasks::Dataflow::ISourceBlock<TOutput> ^ source, TimeSpan timeout);
public static TOutput Receive<TOutput> (this System.Threading.Tasks.Dataflow.ISourceBlock<TOutput> source, TimeSpan timeout);
static member Receive : System.Threading.Tasks.Dataflow.ISourceBlock<'Output> * TimeSpan -> 'Output
<Extension()>
Public Function Receive(Of TOutput) (source As ISourceBlock(Of TOutput), timeout As TimeSpan) As TOutput
형식 매개 변수
- TOutput
소스에 포함된 데이터 형식입니다.
매개 변수
- source
- ISourceBlock<TOutput>
값을 받는 소스입니다.
- timeout
- TimeSpan
동기 작업이 완료될 때까지 기다리는 최대 시간 간격(밀리초)이거나 무한히 대기하는 -1 밀리초를 나타내는 시간 간격입니다.
반환
받은 값입니다.
예외
source
이(가) null
인 경우
항목을 소스에서 받을 수 없습니다.
항목을 소스에서 받기 전에 지정된 제한 시간이 만료된 경우
설명
원본이 이 작업에서 받은 항목을 성공적으로 제공하면 동시 시간 초과가 발생하더라도 해당 항목이 반환됩니다.
적용 대상
Receive<TOutput>(ISourceBlock<TOutput>, TimeSpan, CancellationToken)
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
- Source:
- DataflowBlock.cs
지정된 원본에서 값을 동기적으로 받으면서 작업을 취소하는 토큰을 제공하고 최적의 시간 초과 간격을 관찰합니다.
public:
generic <typename TOutput>
[System::Runtime::CompilerServices::Extension]
static TOutput Receive(System::Threading::Tasks::Dataflow::ISourceBlock<TOutput> ^ source, TimeSpan timeout, System::Threading::CancellationToken cancellationToken);
public static TOutput Receive<TOutput> (this System.Threading.Tasks.Dataflow.ISourceBlock<TOutput> source, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
static member Receive : System.Threading.Tasks.Dataflow.ISourceBlock<'Output> * TimeSpan * System.Threading.CancellationToken -> 'Output
<Extension()>
Public Function Receive(Of TOutput) (source As ISourceBlock(Of TOutput), timeout As TimeSpan, cancellationToken As CancellationToken) As TOutput
형식 매개 변수
- TOutput
소스에 포함된 데이터 형식입니다.
매개 변수
- source
- ISourceBlock<TOutput>
값을 받는 소스입니다.
- timeout
- TimeSpan
동기 작업이 완료될 때까지 기다리는 최대 시간 간격(밀리초)이거나 무한히 대기하는 -1 밀리초를 나타내는 시간 간격입니다.
- cancellationToken
- CancellationToken
받기 작업을 취소하는 데 사용할 토큰입니다.
반환
받은 값입니다.
예외
source
이 null
인 경우
항목을 소스에서 받을 수 없습니다.
항목을 소스에서 받기 전에 지정된 제한 시간이 만료된 경우
소스에서 항목을 받기 전에 작업이 취소되었습니다.
설명
원본이 이 작업에서 받은 항목 값을 성공적으로 제공하면 동시 제한 시간 또는 취소 요청이 발생하더라도 해당 값이 반환됩니다.
적용 대상
.NET