Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8233342

(dc spec) connect and disconnect methods should specify that they may block

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 14
    • core-libs
    • None
    • behavioral
    • minimal
    • There should be no behavioral change as this is simply a change to match the specification with the extant behavior.
    • Java API
    • SE

      Summary

      Update specification of java.nio.channels.DatagramChannel methods connect and disconnect to indicate that they may block.

      Problem

      The DatagramChannel methods connect and disconnect may block if a read or write operation is in progress on the channel when they are invoked, but the specification does not state that this is the case.

      Solution

      Modify verbiage in DatagramChannel.connect and DatagramChannel.disconnect to indicate that they may block if a read or write operation is in progress at the moment they are invoked.

      Specification

      • connect

      Add this verbiage:

      Datagrams in the channel's {@linkplain java.net.StandardSocketOptions#SO_RCVBUF socket receive buffer}, which have not been {@linkplain #receive(ByteBuffer) received} before invoking this method, may be discarded.

      If another thread has already initiated a read or write operation upon this channel, then an invocation of this method will block until any such operation is complete.

      Remove this verbiage:

      It will not have any effect on read or write operations that are already in progress at the moment that it is invoked.

      • disconnect

      Add this sentence:

      If another thread has already initiated a read or write operation upon this channel, then an invocation of this method may block until any such operation is complete.

      Remove this verbiage:

      It will not have any effect on read or write operations that are already in progress at the moment that it is invoked.

      Please also refer to the (newest) attached webrev webrev-8146298.zip.

        1. webrev-8146298.zip
          79 kB
        2. webrev-8146298.zip
          80 kB
        3. webrev-8146298.zip
          80 kB
        4. webrev-8146298.zip
          80 kB
        5. webrev-8146298.zip
          77 kB

            bpb Brian Burkhalter
            webbuggrp Webbug Group
            Alan Bateman, Chris Hegarty, Daniel Fuchs
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: