BitShares-Core
7.0.2
BitShares blockchain node software and command-line wallet software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Variables
a
c
d
e
g
h
l
n
o
t
w
Typedefs
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
w
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
q
r
s
t
u
v
w
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
v
w
Related Functions
a
b
c
d
e
f
g
h
m
n
o
p
s
t
u
v
w
y
Files
File List
File Members
All
_
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
v
w
Functions
Variables
Typedefs
Macros
_
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
libraries
fc
include
fc
thread
priority.hpp
Go to the documentation of this file.
1
#ifndef _FC_PRIORITY_HPP_
2
#define _FC_PRIORITY_HPP_
3
4
namespace
fc
{
9
class
priority
{
10
public
:
11
explicit
priority
(
int
v = 0):
value
(v){}
12
priority
(
const
priority
& p ):
value
(p.
value
){}
13
bool
operator <
(
const
priority
& p )
const
{
14
return
value
< p.
value
;
15
}
16
static
priority
max
() {
return
priority
(10000); }
17
static
priority
min
() {
return
priority
(-10000); }
18
static
priority
_internal__priority_for_short_sleeps
() {
return
priority
(-100000); }
19
int
value
;
20
};
21
}
22
#endif // _FC_PRIORITY_HPP_
fc::priority::max
static priority max()
Definition:
priority.hpp:16
fc
Definition:
api.hpp:15
fc::priority::operator<
bool operator<(const priority &p) const
Definition:
priority.hpp:13
fc::priority::value
int value
Definition:
priority.hpp:19
fc::priority::_internal__priority_for_short_sleeps
static priority _internal__priority_for_short_sleeps()
Definition:
priority.hpp:18
fc::priority::min
static priority min()
Definition:
priority.hpp:17
fc::priority::priority
priority(int v=0)
Definition:
priority.hpp:11
fc::priority::priority
priority(const priority &p)
Definition:
priority.hpp:12
fc::priority
Definition:
priority.hpp:9
Generated on Fri Dec 15 2023 06:12:42 for BitShares-Core by
1.8.17