<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body>
    On 21/12/2022 14:58, Arnaud Masson wrote:<br>
    <blockquote type="cite" cite="mid:BYAPR15MB2965B9C1E7D7F6BB9D765838C7EB9@BYAPR15MB2965.namprd15.prod.outlook.com">
      
      <meta name="Generator" content="Microsoft Word 15 (filtered
        medium)">
      <style>@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        font-size:10.0pt;
        font-family:"Calibri",sans-serif;}span.EmailStyle19
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}div.WordSection1
        {page:WordSection1;}</style>
      <div class="WordSection1">
        <div>
          <p class="MsoNormal"><span style="font-size:11.0pt" lang="EN-US">> The way to interrupt sockets has always
              been to close them.
            </span><span style="font-size:11.0pt">Then blocking methods
              will throw an exception.<br>
              <br>
              <o:p></o:p></span></p>
          <p class="MsoNormal"><span style="font-size:11.0pt" lang="EN-US">I didn’t test but I was hoping that “JEP 353:
              Reimplement the Legacy Socket API” made classic socket API
              interruptible (like NIO) .<o:p></o:p></span></p>
          <p class="MsoNormal"><span style="font-size:11.0pt" lang="EN-US">This would make socket API so much more
              consistent with other blocking stuff.<o:p></o:p></span></p>
          <br>
        </div>
      </div>
    </blockquote>
    <br>
    JEP 353 put in the foundation to enable this and JEP 425 makes use
    of it, see the Networking section [1] in the JEP and specifically:<br>
    <br>
    "To allow for interruption and cancellation, the blocking I/O
    methods defined by java.net.Socket, ServerSocket, and DatagramSocket
    are now specified to be interruptible when invoked in a virtual
    thread"<br>
    <br>
    So in the HTTP/1.1 scenario here, where a virtual thread is blocked
    on an idle persistent connection, the shutdownNow will cause the
    virtual thread to wakeup and close the connection.<br>
    <br>
    -Alan<br>
    <br>
    [1] <a class="moz-txt-link-freetext" href="https://openjdk.org/jeps/425#Networking">https://openjdk.org/jeps/425#Networking</a><br>
  </body>
</html>