Skip to content

Commit f2e8dc4

Browse files
author
Brian Burkhalter
committedNov 14, 2019
8146298: (dc spec) connect and disconnect methods should specify that they may block
Reviewed-by: alanb, chegar, dfuchs, darcy
1 parent 4110efa commit f2e8dc4

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed
 

‎src/java.base/share/classes/java/nio/channels/DatagramChannel.java

+15-10
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,11 @@ public abstract <T> DatagramChannel setOption(SocketOption<T> name, T value)
255255
* <p> The channel's socket is configured so that it only receives
256256
* datagrams from, and sends datagrams to, the given remote <i>peer</i>
257257
* address. Once connected, datagrams may not be received from or sent to
258-
* any other address. A datagram socket remains connected until it is
259-
* explicitly disconnected or until it is closed.
258+
* any other address. Datagrams in the channel's {@linkplain
259+
* java.net.StandardSocketOptions#SO_RCVBUF socket receive buffer}, which
260+
* have not been {@linkplain #receive(ByteBuffer) received} before invoking
261+
* this method, may be discarded. The channel's socket remains connected
262+
* until it is explicitly disconnected or until it is closed.
260263
*
261264
* <p> This method performs exactly the same security checks as the {@link
262265
* java.net.DatagramSocket#connect connect} method of the {@link
@@ -270,12 +273,13 @@ public abstract <T> DatagramChannel setOption(SocketOption<T> name, T value)
270273
* should be taken to ensure that a connected datagram channel is not shared
271274
* with untrusted code.
272275
*
273-
* <p> This method may be invoked at any time. It will not have any effect
274-
* on read or write operations that are already in progress at the moment
275-
* that it is invoked. If this channel's socket is not bound then this method
276-
* will first cause the socket to be bound to an address that is assigned
276+
* <p> This method may be invoked at any time. If another thread has
277+
* already initiated a read or write operation upon this channel, then an
278+
* invocation of this method will block until any such operation is
279+
* complete. If this channel's socket is not bound then this method will
280+
* first cause the socket to be bound to an address that is assigned
277281
* automatically, as if invoking the {@link #bind bind} method with a
278-
* parameter of {@code null}. </p>
282+
* parameter of {@code null}. </p>
279283
*
280284
* @param remote
281285
* The remote address to which this channel is to be connected
@@ -323,9 +327,10 @@ public abstract DatagramChannel connect(SocketAddress remote)
323327
* from, and sends datagrams to, any remote address so long as the security
324328
* manager, if installed, permits it.
325329
*
326-
* <p> This method may be invoked at any time. It will not have any effect
327-
* on read or write operations that are already in progress at the moment
328-
* that it is invoked.
330+
* <p> This method may be invoked at any time. If another thread has
331+
* already initiated a read or write operation upon this channel, then an
332+
* invocation of this method will block until any such operation is
333+
* complete.
329334
*
330335
* <p> If this channel's socket is not connected, or if the channel is
331336
* closed, then invoking this method has no effect. </p>

0 commit comments

Comments
 (0)
Please sign in to comment.