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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:01:50+00:00 2026-05-28T16:01:50+00:00

I was wondering what’s the timeout accuracy of the method java.net.Socket.connect(SocketAddress, int timeout) ?

  • 0

I was wondering what’s the timeout accuracy of the method java.net.Socket.connect(SocketAddress, int timeout)?

Initially I’d thought that it’s built atop java.lang.Object.wait and thus have a 10-15 millisecond error (source),

But after examining the source code, it looks like all it does is to delegate the call to java.net.SocketImpl.connect(SocketaAddress, int).

Does this mean that java.net.Socket.connect(SocketAddress, int) does not use Object.wait and hence is not subject to the 10-15 millisecond error Object.wait has?

  • 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-28T16:01:53+00:00Added an answer on May 28, 2026 at 4:01 pm

    it looks like all it does is to delegate the call to java.net.SocketImpl.connect(SocketaAddress, int).

    which is an abstract method of the SocketImpl class.

    The subclass actually implementing it (the system-default SocketImpl implicitly retrieved from SocketImplFactory.createSocketImpl() in the Socket constructor) in turn relies on a native method, so it’s not possible to know the inaccuracy in a platform-independent way.

    — EDIT (response to comment)

    If not using a Socket subclass that specifies a custom SocketImpl via the protected Socket(SocketImpl impl) constructor, the standard Socket instance created by the Socket() constructor uses a SocksSocketImpl (which in turn extends PlainSocketImpl).

    SocksSocketImpl.connect(SocketAddress address, int timeout)

    calls

    super.connect(SocketAddress address, int timeout) (PlainSocketImpl.connect(SocketAddress address, int timeout)),

    which in turn calls

    PlainSocketImpl.connectToAddress(InetAddress address, int port, int timeout),

    which in turn calls

    PlainSocketImpl.doConnect(InetAddress address, int port, int timeout),

    which in turn calls

    PlainSocketImpl.socketConnect(InetAddress address, int port, int timeout),

    which is a private native method, and we don’t know what’s inside 🙂

    So no, we’re not relying upon Object.wait.

    —

    See http://jcs.mobile-utopia.com/jcs/18846_PlainSocketImpl.java and http://jcs.mobile-utopia.com/jcs/31401_SocksSocketImpl.java for source code

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

Sidebar

Related Questions

Wondering if there is an existing ring buffer in .NET that has only one
Wondering if this is possible. We have an 3rd Party library that contains identification
Wondering if anyone knows a nice way to execute a Java command-line program from
Wondering if there is any way to get the lambda expressions that result from
Wondering whether there is an efficient way to add an item to Java's ArrayList
Wondering if it is possible for my claims aware application (ASP.NET) to save a
Wondering how to substring the last two characters quickly in Java?
wondering if there's any way to make it so that a list I have
Wondering if someone can answer something that has stumped me. I have a Timer
Wondering if there's any jquery library/plugin that can easily perform the following. At main

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.