Skip to content

Commit 7d86faf

Browse files
committed
Regenerate documentation.
1 parent f643551 commit 7d86faf

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

asio/src/doc/reference.qbk

+12-2
Original file line numberDiff line numberDiff line change
@@ -61800,6 +61800,11 @@ Note that in the following case:
6180061800
the completion of the first async operation will perform `s.dispatch(a)`, and the second will perform `s.dispatch(b)`, but the order in which those are performed is unspecified. That is, you cannot state whether one happens-before the other. Therefore none of the above conditions are met and no ordering guarantee is made.
6180161801

6180261802

61803+
[heading Remarks]
61804+
61805+
The implementation makes no guarantee that handlers posted or dispatched through different `strand` objects will be invoked concurrently.
61806+
61807+
6180361808
[heading Thread Safety]
6180461809

6180561810
['Distinct] ['objects:] Safe.
@@ -66793,7 +66798,7 @@ Create an iterator from a sequence of endpoints, host and service name.
6679366798

6679466799

6679566800
template<
66796-
typename ``[link asio.reference.EndpointIterator EndpointIterator]``>
66801+
typename EndpointIterator>
6679766802
static basic_resolver_iterator ``[link asio.reference.ip__basic_resolver_iterator.create.overload3 create]``(
6679866803
EndpointIterator begin,
6679966804
EndpointIterator end,
@@ -66843,7 +66848,7 @@ Create an iterator from a sequence of endpoints, host and service name.
6684366848

6684466849

6684566850
template<
66846-
typename ``[link asio.reference.EndpointIterator EndpointIterator]``>
66851+
typename EndpointIterator>
6684766852
static basic_resolver_iterator create(
6684866853
EndpointIterator begin,
6684966854
EndpointIterator end,
@@ -94456,6 +94461,11 @@ Note that in the following case:
9445694461
the completion of the first async operation will perform `s.dispatch(a)`, and the second will perform `s.dispatch(b)`, but the order in which those are performed is unspecified. That is, you cannot state whether one happens-before the other. Therefore none of the above conditions are met and no ordering guarantee is made.
9445794462

9445894463

94464+
[heading Remarks]
94465+
94466+
The implementation makes no guarantee that handlers posted or dispatched through different `strand` objects will be invoked concurrently.
94467+
94468+
9445994469
[heading Thread Safety]
9446094470

9446194471
['Distinct] ['objects:] Safe.

0 commit comments

Comments
 (0)