66 lines
5.3 KiB
HTML
66 lines
5.3 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Operation state concept</title>
|
|
<link rel="stylesheet" href="../../boostbook.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
|
<link rel="home" href="../../index.html" title="Asio">
|
|
<link rel="up" href="../reference.html" title="Reference">
|
|
<link rel="prev" href="NullaryToken.html" title="Nullary token requirements">
|
|
<link rel="next" href="ProtoAllocator.html" title="Proto-allocator requirements">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../asio.png"></td></tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="NullaryToken.html"><img src="../../prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../home.png" alt="Home"></a><a accesskey="n" href="ProtoAllocator.html"><img src="../../next.png" alt="Next"></a>
|
|
</div>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h3 class="title">
|
|
<a name="asio.reference.OperationState"></a><a class="link" href="OperationState.html" title="Operation state concept">Operation state concept</a>
|
|
</h3></div></div></div>
|
|
<pre class="programlisting"><span class="keyword">template</span><span class="special"><</span><span class="keyword">class</span> <span class="identifier">O</span><span class="special">></span>
|
|
<span class="identifier">concept</span> <span class="identifier">operation_state</span> <span class="special">=</span>
|
|
<span class="identifier">destructible</span><span class="special"><</span><span class="identifier">O</span><span class="special">></span> <span class="special">&&</span>
|
|
<span class="identifier">is_object_v</span><span class="special"><</span><span class="identifier">O</span><span class="special">></span> <span class="special">&&</span>
|
|
<span class="identifier">requires</span> <span class="special">(</span><span class="identifier">O</span><span class="special">&</span> <span class="identifier">o</span><span class="special">)</span> <span class="special">{</span>
|
|
<span class="special">{</span> <span class="identifier">execution</span><span class="special">::</span><span class="identifier">start</span><span class="special">(</span><span class="identifier">o</span><span class="special">)</span> <span class="special">}</span> <span class="keyword">noexcept</span><span class="special">;</span>
|
|
<span class="special">};</span>
|
|
</pre>
|
|
<p>
|
|
An object whose type satisfies <code class="computeroutput"><span class="identifier">operation_state</span></code>
|
|
represents the state of an asynchronous operation. It is the result of calling
|
|
<code class="computeroutput"><span class="identifier">execution</span><span class="special">::</span><span class="identifier">connect</span></code> with a <code class="computeroutput"><span class="identifier">sender</span></code>
|
|
and a <code class="computeroutput"><span class="identifier">receiver</span></code>.
|
|
</p>
|
|
<p>
|
|
<code class="computeroutput"><span class="identifier">execution</span><span class="special">::</span><span class="identifier">start</span></code> may be called on an <code class="computeroutput"><span class="identifier">operation_state</span></code> object at most once. Once
|
|
<code class="computeroutput"><span class="identifier">execution</span><span class="special">::</span><span class="identifier">start</span></code> has been invoked, the caller shall
|
|
ensure that the start of a non-exceptional invocation of one of the receiver's
|
|
completion-signalling operations strongly happens before [intro.multithread]
|
|
the call to the <code class="computeroutput"><span class="identifier">operation_state</span></code>
|
|
destructor.
|
|
</p>
|
|
<p>
|
|
The start of the invocation of <code class="computeroutput"><span class="identifier">execution</span><span class="special">::</span><span class="identifier">start</span></code>
|
|
shall strongly happen before [intro.multithread] the invocation of one of
|
|
the three receiver operations.
|
|
</p>
|
|
<p>
|
|
<code class="computeroutput"><span class="identifier">execution</span><span class="special">::</span><span class="identifier">start</span></code> may or may not block pending the
|
|
successful transfer of execution to one of the three receiver operations.
|
|
</p>
|
|
</div>
|
|
<div class="copyright-footer">Copyright © 2003-2023 Christopher M. Kohlhoff<p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="NullaryToken.html"><img src="../../prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../home.png" alt="Home"></a><a accesskey="n" href="ProtoAllocator.html"><img src="../../next.png" alt="Next"></a>
|
|
</div>
|
|
</body>
|
|
</html>
|