aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/future/wait/wait_policy.h
blob: 310b702f1744b2471a0993f452ba6f35e6721fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

namespace NThreading {
    struct TWaitPolicy {
        struct TAll {};
        struct TAny {};
        struct TExceptionOrAll {};
    };
}