CountdownEvent 클래스

정의

개수가 0에 도달하면 신호를 받은 동기화 기본 형식을 나타냅니다.

public ref class CountdownEvent : IDisposable
public class CountdownEvent : IDisposable
[System.Runtime.InteropServices.ComVisible(false)]
public class CountdownEvent : IDisposable
type CountdownEvent = class
    interface IDisposable
[<System.Runtime.InteropServices.ComVisible(false)>]
type CountdownEvent = class
    interface IDisposable
Public Class CountdownEvent
Implements IDisposable
상속
CountdownEvent
특성
구현

예제

다음 예제에서는 다음을 사용하는 방법을 보여줍니다.CountdownEvent

using System;
using System.Collections.Concurrent;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;

class Example
{
    static async Task Main()
    {
        // Initialize a queue and a CountdownEvent
        ConcurrentQueue<int> queue = new ConcurrentQueue<int>(Enumerable.Range(0, 10000));
        CountdownEvent cde = new CountdownEvent(10000); // initial count = 10000

        // This is the logic for all queue consumers
        Action consumer = () =>
        {
            int local;
            // decrement CDE count once for each element consumed from queue
            while (queue.TryDequeue(out local)) cde.Signal();
        };

        // Now empty the queue with a couple of asynchronous tasks
        Task t1 = Task.Factory.StartNew(consumer);
        Task t2 = Task.Factory.StartNew(consumer);

        // And wait for queue to empty by waiting on cde
        cde.Wait(); // will return when cde count reaches 0

        Console.WriteLine("Done emptying queue.  InitialCount={0}, CurrentCount={1}, IsSet={2}",
            cde.InitialCount, cde.CurrentCount, cde.IsSet);

        // Proper form is to wait for the tasks to complete, even if you know that their work
        // is done already.
        await Task.WhenAll(t1, t2);

        // Resetting will cause the CountdownEvent to un-set, and resets InitialCount/CurrentCount
        // to the specified value
        cde.Reset(10);

        // AddCount will affect the CurrentCount, but not the InitialCount
        cde.AddCount(2);

        Console.WriteLine("After Reset(10), AddCount(2): InitialCount={0}, CurrentCount={1}, IsSet={2}",
            cde.InitialCount, cde.CurrentCount, cde.IsSet);

        // Now try waiting with cancellation
        CancellationTokenSource cts = new CancellationTokenSource();
        cts.Cancel(); // cancels the CancellationTokenSource
        try
        {
            cde.Wait(cts.Token);
        }
        catch (OperationCanceledException)
        {
            Console.WriteLine("cde.Wait(preCanceledToken) threw OCE, as expected");
        }
        finally
        {
           cts.Dispose();
        }
        // It's good to release a CountdownEvent when you're done with it.
        cde.Dispose();
    }
}
// The example displays the following output:
//    Done emptying queue.  InitialCount=10000, CurrentCount=0, IsSet=True
//    After Reset(10), AddCount(2): InitialCount=10, CurrentCount=12, IsSet=False
//    cde.Wait(preCanceledToken) threw OCE, as expected
Imports System.Collections.Concurrent
Imports System.Linq
Imports System.Threading
Imports System.Threading.Tasks

Module Example
    Sub Main()
        ' Initialize a queue and a CountdownEvent
        Dim queue As New ConcurrentQueue(Of Integer)(Enumerable.Range(0, 10000))
        Dim cde As New CountdownEvent(10000)
        ' initial count = 10000
        ' This is the logic for all queue consumers
        Dim consumer As Action =
            Sub()
                Dim local As Integer
                ' decrement CDE count once for each element consumed from queue
                While queue.TryDequeue(local)
                    cde.Signal()
                End While
            End Sub

        ' Now empty the queue with a couple of asynchronous tasks
        Dim t1 As Task = Task.Factory.StartNew(consumer)
        Dim t2 As Task = Task.Factory.StartNew(consumer)

        ' And wait for queue to empty by waiting on cde
        cde.Wait()
        ' will return when cde count reaches 0
        Console.WriteLine("Done emptying queue. InitialCount={0}, CurrentCount={1}, IsSet={2}", cde.InitialCount, cde.CurrentCount, cde.IsSet)

        ' Proper form is to wait for the tasks to complete, even if you know that their work
        ' is done already.
        Task.WaitAll(t1, t2)

        ' Resetting will cause the CountdownEvent to un-set, and resets InitialCount/CurrentCount
        ' to the specified value
        cde.Reset(10)

        ' AddCount will affect the CurrentCount, but not the InitialCount
        cde.AddCount(2)

        Console.WriteLine("After Reset(10), AddCount(2): InitialCount={0}, CurrentCount={1}, IsSet={2}", cde.InitialCount, cde.CurrentCount, cde.IsSet)

        ' Now try waiting with cancellation
        Dim cts As New CancellationTokenSource()
        cts.Cancel()
        ' cancels the CancellationTokenSource
        Try
            cde.Wait(cts.Token)
        Catch generatedExceptionName As OperationCanceledException
            Console.WriteLine("cde.Wait(preCanceledToken) threw OCE, as expected")
        Finally
           cts.Dispose()
        End Try

        ' It's good to release a CountdownEvent when you're done with it.
        cde.Dispose()
    End Sub
End Module
' The example displays the following output:
'    Done emptying queue.  InitialCount=10000, CurrentCount=0, IsSet=True
'    After Reset(10), AddCount(2): InitialCount=10, CurrentCount=12, IsSet=False
'    cde.Wait(preCanceledToken) threw OCE, as expected

생성자

Name Description
CountdownEvent(Int32)

지정된 개수를 사용하여 클래스의 CountdownEvent 새 인스턴스를 초기화합니다.

속성

Name Description
CurrentCount

이벤트를 설정하는 데 필요한 나머지 신호 수를 가져옵니다.

InitialCount

이벤트를 설정하는 데 처음 필요한 신호 수를 가져옵니다.

IsSet

개체의 CountdownEvent 현재 개수가 0에 도달했는지 여부를 나타냅니다.

WaitHandle

WaitHandle 이벤트가 설정될 때까지 기다리는 데 사용되는 값을 가져옵니다.

메서드

Name Description
AddCount()

'의 현재 개수를 1씩 증분합니다 CountdownEvent.

AddCount(Int32)

'의 현재 개수를 지정된 값으로 증 CountdownEvent분합니다.

Dispose()

CountdownEvent 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다.

Dispose(Boolean)

에서 사용하는 관리되지 않는 리소스를 CountdownEvent해제하고 관리되는 리소스를 선택적으로 해제합니다.

Equals(Object)

지정한 개체와 현재 개체가 같은지 여부를 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
Reset()

CurrentCountInitialCount으로 다시 설정합니다.

Reset(Int32)

InitialCount 속성을 지정된 값으로 다시 설정합니다.

Signal()

에 신호를 CountdownEvent등록하여 값을 줄입니다 CurrentCount.

Signal(Int32)

여러 신호를 지정된 양만큼 감소시키는 CurrentCount 여러 신호를 CountdownEvent등록합니다.

ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)
TryAddCount()

1씩 증가 CurrentCount 하려고 시도합니다.

TryAddCount(Int32)

지정된 값으로 증가 CurrentCount 하려고 시도합니다.

Wait()

설정될 때까지 현재 스레드를 CountdownEvent 차단합니다.

Wait(CancellationToken)

를 관찰하는 동안 설정될 때까지 CountdownEvent 현재 스레드를 차단합니다 CancellationToken.

Wait(Int32, CancellationToken)

가 설정될 때까지 CountdownEvent 현재 스레드를 차단하고, 32비트 부가 정수로 시간 제한을 측정하고 관찰합니다 CancellationToken.

Wait(Int32)

32비트 부록 정수로 시간 제한을 측정하여 설정될 때까지 CountdownEvent 현재 스레드를 차단합니다.

Wait(TimeSpan, CancellationToken)

를 관찰하는 동안 시간 제한을 측정하여 설정 TimeSpan 될 때까지 CountdownEvent 현재 스레드를 CancellationToken차단합니다.

Wait(TimeSpan)

시간 제한을 측정하여 설정될 때까지 CountdownEvent 현재 스레드를 TimeSpan 차단합니다.

적용 대상

스레드 보안

모든 공용 및 보호된 멤버 CountdownEvent 는 스레드로부터 안전하며 여러 스레드에서 동시에 사용할 수 있습니다. 단 Dispose(), 다른 모든 작업이 CountdownEvent 완료된 경우에만 사용해야 하며 Reset()다른 스레드가 이벤트에 액세스하지 않는 경우에만 사용해야 합니다.

추가 정보