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 7523665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:52:07+00:00 2026-05-30T02:52:07+00:00

I was wondering what is the standard/best implementation of that in Java NIO. This

  • 0

I was wondering what is the standard/best implementation of that in Java NIO. This is fundamental to implement something like heartbeats every N seconds, etc. Note: For obvious reasons (threads are evil and context switches are slow) everything must always happens inside the selector loop.

Note1: Answering Apache MINA does not count, unless you and the framework can demonstrate a clear scenario where this is done in a KISS (Keep It Simple Stupid) way.

Note2: Pipes require threads.

  • 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-05-30T02:52:09+00:00Added an answer on May 30, 2026 at 2:52 am

    Not sure why you wouldn’t have a background thread for sending heartbeats or timing out connections. Heartbeats are not generally considered performance critical.

    You can have the selector wait a specific amount of time and send heartbeats and check time outs at intervals.

    Do you mean like

    selector.select(timeout);
    
    if (System.currentTimeMS() > sendHeartbeatTime) {
        for(Connection conn: connections) 
            conn.checkAndSendHeartbeat();
    }
    
    // in Connection
    private long lastSend = System.currentTimeMS();
    private long lastRead = System.currentTimeMS();
    
    public void writeData() {
       lastSend = System.currentTimeMS();
       // write data.
    }
    
    public void checkAndSendHeartbeat() {
       long now = System.currentTimeMS();
       if (now - lastRead > HEARTBEAT_TIMEOUT) {
          closeConnection();
       else if (now - lastSend > HEATBEAT_INTERVAL)
          writeHeartBeatData();
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am relatively new to web services and am wondering what the standard best
I was wondering if there is a standard way (or best-practices way) of transitioning
I was wondering what's the best way to make NSOutputStream redirect to standard output.
this was more a conceptual question, but I was wondering what the best C#
I'm wondering if there is a defined standard for what the default action is
I was wondering if there is a standard practice regarding the use of labels
I'm wondering if there is a standard or normal means of interpreting time interval
I was wondering if there was a standard way for backbone models/controllers to handle
I am wondering if there are a set of standard emoticons which I can
I have a pretty standard django app, and am wondering how to set the

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.