64 lines
4.8 KiB
HTML
64 lines
4.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>eager<T>/atomic_eager<T> - Boost.Outcome documentation</title>
|
|
<link rel="stylesheet" href="../../css/boost.css" type="text/css">
|
|
<meta name="generator" content="Hugo 0.52 with Boostdoc theme">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
|
|
|
|
<link rel="icon" href="../../images/favicon.ico" type="image/ico"/>
|
|
<body><div class="spirit-nav">
|
|
<a accesskey="p" href="../../reference/aliases/default_policy.html"><img src="../../images/prev.png" alt="Prev"></a>
|
|
<a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
|
|
<a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/lazy.html"><img src="../../images/next.png" alt="Next"></a></div><div id="content">
|
|
<div class="titlepage"><div><div><h1 style="clear: both"><code>eager<T>/atomic_eager<T></code></h1></div></div></div>
|
|
<p>This is very similar to <a href="../../reference/aliases/lazy.html" class="api-reference"><code>lazy<T></code></a>
|
|
, except that execution of the <code>eager<T></code>
|
|
returning function begins immediately, and if the function never suspends during the
|
|
course of its execution, no suspend-resume cycle occurs. Functions which return <code>eager<T></code>
|
|
are therefore suitable for tasks which <em>may</em> require suspension, but will often complete
|
|
immediately.</p>
|
|
|
|
<p><code>atomic_eager<T></code> is like <code>eager<T></code>, except that the setting of the coroutine result
|
|
performs an atomic release, whilst the checking of whether the coroutine has finished
|
|
is an atomic acquire.</p>
|
|
|
|
<p>Example of use (must be called from within a coroutinised function):</p>
|
|
<div class="highlight"><pre class="chroma"><code class="language-c++" data-lang="c++"><span class="n">eager</span><span class="o"><</span><span class="kt">int</span><span class="o">></span> <span class="n">func</span><span class="p">(</span><span class="kt">int</span> <span class="n">x</span><span class="p">)</span>
|
|
<span class="p">{</span>
|
|
<span class="n">co_return</span> <span class="n">x</span> <span class="o">+</span> <span class="mi">1</span><span class="p">;</span>
|
|
<span class="p">}</span>
|
|
<span class="p">...</span>
|
|
<span class="c1">// Executes like a non-coroutine function i.e. r is immediately set to 6.
|
|
</span><span class="c1"></span><span class="kt">int</span> <span class="n">r</span> <span class="o">=</span> <span class="n">co_await</span> <span class="n">func</span><span class="p">(</span><span class="mi">5</span><span class="p">);</span>
|
|
</code></pre></div>
|
|
<p><code>eager<T></code> has special semantics if <code>T</code> is a type capable of constructing from
|
|
an <code>exception_ptr</code> or <code>error_code</code> – any exceptions thrown during the function’s body
|
|
are sent via <code>T</code>, preferably via the error code route if <a href="../../reference/functions/error_from_exception.html" class="api-reference"><code>error_from_exception(</code></a>
|
|
<code>)</code>
|
|
successfully matches the exception throw. This means that a <a href="../../reference/types/basic_result.html" class="api-reference"><code>basic_result<T, E, NoValuePolicy></code></a>
|
|
|
|
or <a href="../../reference/types/basic_outcome.html" class="api-reference"><code>basic_outcome<T, EC, EP, NoValuePolicy></code></a>
|
|
where one of its types is
|
|
is compatible will have its <code>.error()</code> or <code>.exception()</code> set.</p>
|
|
|
|
<p>Note that <code>eager<T></code> does not otherwise transport exception throws, and rethrows
|
|
any exceptions thrown within the coroutine body through the coroutine machinery.
|
|
This does not produce reliable consequences in current C++ compilers. You should
|
|
therefore wrap the coroutine body in a <code>try...catch</code> if <code>T</code> is not able to transport
|
|
exceptions on its own.</p>
|
|
|
|
<p><em>Requires</em>: C++ coroutines to be available in your compiler.</p>
|
|
|
|
<p><em>Namespace</em>: <code>BOOST_OUTCOME_V2_NAMESPACE::awaitables</code></p>
|
|
|
|
<p><em>Header</em>: <code><boost/outcome/coroutine_support.hpp></code></p>
|
|
|
|
|
|
</div><p><small>Last revised: October 04, 2019 at 15:58:37 +0100</small></p>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="../../reference/aliases/default_policy.html"><img src="../../images/prev.png" alt="Prev"></a>
|
|
<a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
|
|
<a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/lazy.html"><img src="../../images/next.png" alt="Next"></a></div></body>
|
|
</html>
|