Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Compliance With Boost.Asio
PrevUpHomeNext

Every asynchronous operation in Boost.Asio has associated characteristics that specify their behaviour.

  • An allocator determines how the asynchronous operations allocate memory resources.
  • A cancellation slot determines how the asynchronous operations support cancellation.
  • An executor determines the queuing and execution strategy for completion handlers.

This section expands further into the roles of allocators, cancellation slots, and executors, highlighting their integration and usage within the mqtt_client.


PrevUpHomeNext