Book Image

Boost.Asio C++ Network Programming

By : Wisnu Anggoro
Book Image

Boost.Asio C++ Network Programming

By: Wisnu Anggoro

Overview of this book

Table of Contents (15 chapters)
Boost.Asio C++ Network Programming Second Edition
Credits
About the Authors
Acknowledgements
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 5. Delving into the Boost.Asio Library

Now that we are able to run the io_service object and give it some work to do, it is time for us to find out more about other objects in the Boost.Asio library in order to develop the network application. All works of the io_service object we used before are run asynchronously but not in a serialized order, which means we are not able to determine the order of the io_service object's work that will be run. Also, we have to consider what we will do if our application encounters any errors at runtime and think about time interval in running any io_service object work. Therefore, in this chapter, we will discuss the following topics:

  • Serially executing the work of the io_service object

  • Catching the exception(s) and handling them properly

  • Executing the work in the desired amount of time