custom_outbox sample
outbox_item::pending_state
is only used within custom_outbox sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
custom_outbox sample
outbox_item::pending_state
outbox_item::pending_state field
Syntax
Show:
Summary
Declaration
from
custom_outbox.cpp:149
pending_state_t
pending_state
;
Examples
References
from
examples
Code
Location
Scope
Referrer
pending_state_t
pending_state
;
custom_outbox.cpp:149
)
:
message
(
std
::
move
(
message
)
,
alloc
)
,
id
(
msg_id
)
,
type
(
msg_type
)
,
qos
(
msg_qos
)
,
tick
(
tick
)
,
pending_state
(
pending_state
)
{
}
custom_outbox.cpp:80
outbox_item
outbox_item::outbox_item()
outbox_item
(
const
outbox_item
&
other
,
allocator_type
alloc
=
{
}
)
:
message
(
other
.
message
,
alloc
)
,
id
(
other
.
id
)
,
type
(
other
.
type
)
,
qos
(
other
.
qos
)
,
tick
(
other
.
tick
)
,
pending_state
(
other
.
pending_state
)
{
}
custom_outbox.cpp:83
outbox_item
outbox_item::outbox_item()
outbox_item
(
outbox_item
&&
other
,
allocator_type
alloc
)
noexcept
:
message
(
std
::
move
(
other
.
message
)
,
alloc
)
,
id
(
other
.
id
)
,
type
(
other
.
type
)
,
qos
(
other
.
qos
)
,
tick
(
other
.
tick
)
,
pending_state
(
other
.
pending_state
)
custom_outbox.cpp:84
outbox_item
outbox_item::outbox_item()
return
pending_state
;
custom_outbox.cpp:96
outbox_item
outbox_item::state() const
pending_state
=
state
;
custom_outbox.cpp:106
outbox_item
outbox_item::set()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
outbox_item::pending_state
is written by 1 function and is read by 2 functions:
outbox_item::set()
All items filtered out
outbox_item::pending_state
outbox_item::outbox_item()
outbox_item::state() const
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out