Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9203435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:28:24+00:00 2026-06-17T23:28:24+00:00

I am trying to understand the difference between io_service’s poll()/poll_one() and run()/run_one(). The difference

  • 0

I am trying to understand the difference between io_service’s poll()/poll_one() and run()/run_one(). The difference as stated in the documentation is that poll() executes ready handlers as opposed to run() which executes any handler.

But nowhere in the boost documentation could I find the definition of a ‘ready handler’.

A valid answer to this question is one able to show, preferably with a code example, the difference between a ready and non-ready handler and the difference between how poll() and run() executes it.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T23:28:25+00:00Added an answer on June 17, 2026 at 11:28 pm
    int main()
    {
        boost::asio::io_service io_service;
        boost::asio::deadline_timer timer(io_service);
    
        timer.expires_from_now(boost::posix_time::seconds(5));
        timer.async_wait([](const boost::system::error_code& err)
                         { std::cout << (err ? "error" : "okay")
                         ;});
    
        //io_service.poll_one(); 
        io_service.run_one();
    }
    

    If you use io_service.poll_one(); you will most likely not see any output because the timer has not elapsed yet. ready handler simply means a handle that is ready to run (such as when a timer elapses or an operation finishes, etc.). However, if you use io_service.run_one(); this call will block until the timer finishes and execute the handler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand the difference between 2 methods that have the same
I'm trying to understand the difference between a squash and a rebase. As I
I am trying to understand the difference between this: if (isset($_POST['Submit'])) { //do something
I'm trying to understand the difference between sequences and lists. In F# there is
I am trying to understand the difference between this list: UIRequiredDeviceCapabilities and individual keys
I'm really trying to understand the difference between OpenID and OAuth? Maybe they're two
Possible Duplicate: Difference between (function(){})(); and function(){}(); I am trying to understand a few
Been trying my best to understand this correctly. What is the difference between an
I am trying to understand what the difference is between string.find and string.match in
I am trying to understand the difference between index = index--; and index=--index; I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.