70 lines
4.1 KiB
HTML
70 lines
4.1 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Asynchronous Agents</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="../model.html" title="Asynchronous Model">
|
|
<link rel="prev" href="async_ops.html" title="Asynchronous Operations">
|
|
<link rel="next" href="associators.html" title="Associated Characteristics and Associators">
|
|
<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="async_ops.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../model.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="associators.html"><img src="../../../next.png" alt="Next"></a>
|
|
</div>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h4 class="title">
|
|
<a name="asio.overview.model.async_agents"></a><a class="link" href="async_agents.html" title="Asynchronous Agents">Asynchronous Agents</a>
|
|
</h4></div></div></div>
|
|
<p>
|
|
<span class="inlinemediaobject"><img src="../../../async_agent_model.png" width="931"></span>
|
|
</p>
|
|
<p>
|
|
An <span class="emphasis"><em>asynchronous agent</em></span> is a sequential composition
|
|
of asynchronous operations. Every asynchronous operation is considered
|
|
to run as a part of an asynchronous agent, even if that agent contains
|
|
only that single operation. An asynchronous agent is an entity that may
|
|
perform work concurrently with other agents. Asynchronous agents are to
|
|
asynchronous operations as threads are to synchronous operations.
|
|
</p>
|
|
<p>
|
|
However, an asynchronous agent is a purely notional construct that allows
|
|
us to reason about the context for, and composition of, asynchronous operations
|
|
in a program. The name “asynchronous agent” does not appear in the
|
|
library, nor is it important which concrete mechanism<sup>[<a name="asio.overview.model.async_agents.f0" href="#ftn.asio.overview.model.async_agents.f0" class="footnote">1</a>]</sup> is used to compose the asynchronous operations in an agent.
|
|
</p>
|
|
<p>
|
|
We can visualise an asynchronous agent as follows:
|
|
</p>
|
|
<p>
|
|
<span class="inlinemediaobject"><img src="../../../async_agent_chain.png" width="738"></span>
|
|
</p>
|
|
<p>
|
|
Asynchronous agents alternately wait for an asynchronous operation to complete,
|
|
and then run a completion handler for that operation. Within the context
|
|
of an agent, these completion handlers represent indivisible units of schedulable
|
|
work.
|
|
</p>
|
|
<div class="footnotes">
|
|
<br><hr width="100" align="left">
|
|
<div class="footnote"><p><sup>[<a name="ftn.asio.overview.model.async_agents.f0" href="#asio.overview.model.async_agents.f0" class="para">1</a>] </sup>
|
|
Such as chains of lambdas, coroutines, fibers, state machines, etc.
|
|
</p></div>
|
|
</div>
|
|
</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="async_ops.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../model.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="associators.html"><img src="../../../next.png" alt="Next"></a>
|
|
</div>
|
|
</body>
|
|
</html>
|