@@ -255,8 +255,11 @@ public abstract <T> DatagramChannel setOption(SocketOption<T> name, T value)
255
255
* <p> The channel's socket is configured so that it only receives
256
256
* datagrams from, and sends datagrams to, the given remote <i>peer</i>
257
257
* 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.
260
263
*
261
264
* <p> This method performs exactly the same security checks as the {@link
262
265
* java.net.DatagramSocket#connect connect} method of the {@link
@@ -270,12 +273,13 @@ public abstract <T> DatagramChannel setOption(SocketOption<T> name, T value)
270
273
* should be taken to ensure that a connected datagram channel is not shared
271
274
* with untrusted code.
272
275
*
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
277
281
* automatically, as if invoking the {@link #bind bind} method with a
278
- * parameter of {@code null}. </p>
282
+ * parameter of {@code null}. </p>
279
283
*
280
284
* @param remote
281
285
* The remote address to which this channel is to be connected
@@ -323,9 +327,10 @@ public abstract DatagramChannel connect(SocketAddress remote)
323
327
* from, and sends datagrams to, any remote address so long as the security
324
328
* manager, if installed, permits it.
325
329
*
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.
329
334
*
330
335
* <p> If this channel's socket is not connected, or if the channel is
331
336
* closed, then invoking this method has no effect. </p>
0 commit comments