lazy.html 5.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3. <title>lazy&lt;T&gt;/atomic_lazy&lt;T&gt; - Boost.Outcome documentation</title>
  4. <link rel="stylesheet" href="../../css/boost.css" type="text/css">
  5. <meta name="generator" content="Hugo 0.52 with Boostdoc theme">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
  7. <link rel="icon" href="../../images/favicon.ico" type="image/ico"/>
  8. <body><div class="spirit-nav">
  9. <a accesskey="p" href="../../reference/aliases/eager.html"><img src="../../images/prev.png" alt="Prev"></a>
  10. <a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
  11. <a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/outcome.html"><img src="../../images/next.png" alt="Next"></a></div><div id="content">
  12. <div class="titlepage"><div><div><h1 style="clear: both"><code>lazy&lt;T&gt;/atomic_lazy&lt;T&gt;</code></h1></div></div></div>
  13. <p>This is very similar to <a href="../../reference/aliases/eager.html" class="api-reference"><code>eager&lt;T&gt;</code></a>
  14. , except that execution of the
  15. <code>lazy&lt;T&gt;</code> returning function suspends immediately. Functions which return <code>lazy&lt;T&gt;</code>
  16. are therefore suitable for tasks which you need to instantiate right now, but whose
  17. execution will occur elsewhere e.g. in a separate kernel thread. Because of the very
  18. common use case of using worker threads to execute the body of lazily executed
  19. coroutines, most people will want to use <code>atomic_lazy&lt;T&gt;</code> instead of <code>lazy&lt;T&gt;</code>.</p>
  20. <p><code>atomic_lazy&lt;T&gt;</code> is like <code>lazy&lt;T&gt;</code>, except that the setting of the coroutine result
  21. performs an atomic release, whilst the checking of whether the coroutine has finished
  22. is an atomic acquire.</p>
  23. <p><code>lazy&lt;T&gt;</code> has similar semantics to <code>std::lazy&lt;T&gt;</code>, which is being standardised. See
  24. <a href="https://wg21.link/P1056">https://wg21.link/P1056</a> <em>Add lazy coroutine (coroutine task) type</em>.</p>
  25. <p>Example of use (must be called from within a coroutinised function):</p>
  26. <div class="highlight"><pre class="chroma"><code class="language-c++" data-lang="c++"><span class="n">lazy</span><span class="o">&lt;</span><span class="kt">int</span><span class="o">&gt;</span> <span class="n">func</span><span class="p">(</span><span class="kt">int</span> <span class="n">x</span><span class="p">)</span>
  27. <span class="p">{</span>
  28. <span class="n">co_return</span> <span class="n">x</span> <span class="o">+</span> <span class="mi">1</span><span class="p">;</span>
  29. <span class="p">}</span>
  30. <span class="p">...</span>
  31. <span class="c1">// Always suspends perhaps causing other coroutines to execute, then resumes.
  32. </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>
  33. </code></pre></div>
  34. <p><code>lazy&lt;T&gt;</code> has special semantics if <code>T</code> is a type capable of constructing from
  35. an <code>exception_ptr</code> or <code>error_code</code> &ndash; any exceptions thrown during the function&rsquo;s body
  36. 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>
  37. <code>)</code>
  38. successfully matches the exception throw. This means that a <a href="../../reference/types/basic_result.html" class="api-reference"><code>basic_result&lt;T, E, NoValuePolicy&gt;</code></a>
  39. or <a href="../../reference/types/basic_outcome.html" class="api-reference"><code>basic_outcome&lt;T, EC, EP, NoValuePolicy&gt;</code></a>
  40. where one of its types is
  41. is compatible will have its <code>.error()</code> or <code>.exception()</code> set.</p>
  42. <p>Note that <code>lazy&lt;T&gt;</code> does not otherwise transport exception throws, and rethrows
  43. any exceptions thrown within the coroutine body through the coroutine machinery.
  44. This does not produce reliable consequences in current C++ compilers. You should
  45. therefore wrap the coroutine body in a <code>try...catch</code> if <code>T</code> is not able to transport
  46. exceptions on its own.</p>
  47. <p><em>Requires</em>: C++ coroutines to be available in your compiler.</p>
  48. <p><em>Namespace</em>: <code>BOOST_OUTCOME_V2_NAMESPACE::awaitables</code></p>
  49. <p><em>Header</em>: <code>&lt;boost/outcome/coroutine_support.hpp&gt;</code></p>
  50. </div><p><small>Last revised: October 04, 2019 at 15:58:37 &#43;0100</small></p>
  51. <hr>
  52. <div class="spirit-nav">
  53. <a accesskey="p" href="../../reference/aliases/eager.html"><img src="../../images/prev.png" alt="Prev"></a>
  54. <a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
  55. <a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/outcome.html"><img src="../../images/next.png" alt="Next"></a></div></body>
  56. </html>