YACLib
C++ library for concurrent tasks execution
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
y
Functions
a
c
d
f
g
i
l
m
n
o
p
r
s
t
u
w
y
Variables
Typedefs
a
c
d
f
h
i
l
m
r
s
t
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
~
Variables
_
c
i
j
n
p
s
u
v
Typedefs
b
d
e
f
i
m
n
p
r
s
t
v
w
Enumerations
Enumerator
Related Symbols
Files
File List
File Members
All
Functions
Macros
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
order_policy.hpp
Go to the documentation of this file.
1
#pragma once
2
3
namespace
yaclib
{
4
5
/**
6
* This Policy describe how algorithm produce result
7
*
8
* Fifo -- order of results is fifo
9
* Note: non-deterministic in multithreading environment
10
* Note: now it's default for WhenAll because it allow call delete early
11
* Same -- order of results same as order of input
12
*/
13
enum class
OrderPolicy
:
unsigned
char
{
14
Fifo
= 0,
15
Same
= 1,
16
};
13
enum class
OrderPolicy
:
unsigned
char
{
…
};
17
18
}
// namespace yaclib
yaclib
Definition
base_core.hpp:18
yaclib::OrderPolicy
OrderPolicy
This Policy describe how algorithm produce result.
Definition
order_policy.hpp:13
yaclib::OrderPolicy::Fifo
@ Fifo
yaclib::OrderPolicy::Same
@ Same
include
yaclib
util
order_policy.hpp
Generated by
1.9.8