Class DatagramChannel
- All Implemented Interfaces:
Closeable,AutoCloseable,ByteChannel,Channel,GatheringByteChannel,InterruptibleChannel,ReadableByteChannel,ScatteringByteChannel,WritableByteChannel
public abstract class DatagramChannel extends AbstractSelectableChannel implements ByteChannel, ScatteringByteChannel, GatheringByteChannel
DatagramChannel is a selectable channel that represents a partial
abstraction of a datagram socket. The socket method of this class can
return the related DatagramSocket instance, which can handle the
socket.
A datagram channel is open but not connected when created with the
open() method. After it is connected, it will keep the connected
status until it is disconnected or closed. The benefit of a connected channel
is the reduced effort of security checks during send and receive. When
invoking read or write, a connected channel is required.
Datagram channels are thread-safe; only one thread can read or write at the same time.
-
Constructor Summary
Constructors Modifier Constructor Description protectedDatagramChannel(SelectorProvider selectorProvider)Constructs a newDatagramChannel. -
Method Summary
Modifier and Type Method Description abstract DatagramChannelconnect(SocketAddress address)Connects the socket of this channel to a remote address, which is the only communication peer for getting and sending datagrams after being connected.abstract DatagramChanneldisconnect()Disconnects the socket of this channel, which has been connected before in order to send and receive datagrams.abstract booleanisConnected()Returns whether this channel's socket is connected or not.static DatagramChannelopen()Creates an opened and not-connected datagram channel.abstract intread(ByteBuffer target)Reads a datagram from this channel into the byte buffer.longread(ByteBuffer[] targets)Reads a datagram from this channel into an array of byte buffers.abstract longread(ByteBuffer[] targets, int offset, int length)Reads a datagram from this channel into an array of byte buffers.abstract SocketAddressreceive(ByteBuffer target)Gets a datagram from this channel.abstract intsend(ByteBuffer source, SocketAddress address)Sends a datagram through this channel.abstract DatagramSocketsocket()Returns the related datagram socket of this channel, which does not define additional public methods to those defined byDatagramSocket.intvalidOps()Gets the valid operations of this channel.abstract intwrite(ByteBuffer source)Writes a datagram from the byte buffer to this channel.longwrite(ByteBuffer[] sources)Writes a datagram from the byte buffers to this channel.abstract longwrite(ByteBuffer[] sources, int offset, int length)Writes a datagram from the byte buffers to this channel.Methods inherited from class java.nio.channels.spi.AbstractSelectableChannel
blockingLock, configureBlocking, implCloseChannel, implCloseSelectableChannel, implConfigureBlocking, isBlocking, isRegistered, keyFor, provider, registerMethods inherited from class java.nio.channels.SelectableChannel
registerMethods inherited from class java.nio.channels.spi.AbstractInterruptibleChannel
begin, close, end, isOpen
-
Constructor Details
-
DatagramChannel
Constructs a newDatagramChannel.- Parameters:
selectorProvider- an instance of SelectorProvider.
-
-
Method Details
-
open
Creates an opened and not-connected datagram channel.This channel is created by calling the
openDatagramChannelmethod of the defaultSelectorProviderinstance.- Returns:
- the new channel which is open but not connected.
- Throws:
IOException- if some I/O error occurs.
-
validOps
public final int validOps()Gets the valid operations of this channel. Datagram channels support read and write operations, so this method returns (SelectionKey.OP_READ|SelectionKey.OP_WRITE).- Specified by:
validOpsin classSelectableChannel- Returns:
- valid operations in bit-set.
- See Also:
SelectableChannel.validOps()
-
socket
Returns the related datagram socket of this channel, which does not define additional public methods to those defined byDatagramSocket.- Returns:
- the related DatagramSocket instance.
-
isConnected
public abstract boolean isConnected()Returns whether this channel's socket is connected or not.- Returns:
trueif this channel's socket is connected;falseotherwise.
-
connect
Connects the socket of this channel to a remote address, which is the only communication peer for getting and sending datagrams after being connected.This method can be called at any time without affecting the read and write operations being processed at the time the method is called. The connection status does not change until the channel is disconnected or closed.
This method executes the same security checks as the connect method of the
DatagramSocketclass.- Parameters:
address- the address to be connected to.- Returns:
- this channel.
- Throws:
ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- if some other I/O error occurs.
-
disconnect
Disconnects the socket of this channel, which has been connected before in order to send and receive datagrams.This method can be called at any time without affecting the read and write operations being underway. It does not have any effect if the socket is not connected or the channel is closed.
- Returns:
- this channel.
- Throws:
IOException- some other I/O error occurs.
-
receive
Gets a datagram from this channel.This method transfers a datagram from the channel into the target byte buffer. If this channel is in blocking mode, it waits for the datagram and returns its address when it is available. If this channel is in non-blocking mode and no datagram is available, it returns
nullimmediately. The transfer starts at the current position of the buffer, and if there is not enough space remaining in the buffer to store the datagram then the part of the datagram that does not fit is discarded.This method can be called at any time and it will block if there is another thread that has started a read operation on the channel.
This method executes the same security checks as the receive method of the
DatagramSocketclass.- Parameters:
target- the byte buffer to store the received datagram.- Returns:
- the address of the datagram if the transfer is performed, or null if the channel is in non-blocking mode and no datagram is available.
- Throws:
ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.
-
send
Sends a datagram through this channel. The datagram consists of the remaining bytes insource.If this channel is in blocking mode then the datagram is sent as soon as there is enough space in the underlying output buffer. If this channel is in non-blocking mode then the datagram is only sent if there is enough space in the underlying output buffer at that moment. The transfer action is just like a regular write operation.
This method can be called at any time and it will block if another thread has started a send operation on this channel.
This method executes the same security checks as the send method of the
DatagramSocketclass.- Parameters:
source- the byte buffer with the datagram to be sent.address- the destination address for the datagram.- Returns:
- the number of bytes sent. This is the number of bytes remaining
in
sourceor zero if the channel is in non-blocking mode and there is not enough space for the datagram in the underlying output buffer. - Throws:
ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.
-
read
Reads a datagram from this channel into the byte buffer.The precondition for calling this method is that the channel is connected and the incoming datagram is from the connected address. If the buffer is not big enough to store the datagram, the part of the datagram that does not fit in the buffer is discarded. Otherwise, this method has the same behavior as the
readmethod in theReadableByteChannelinterface.- Specified by:
readin interfaceReadableByteChannel- Parameters:
target- the byte buffer to store the received datagram.- Returns:
- a non-negative number as the number of bytes read, or -1 as the read operation reaches the end of stream.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
ReadableByteChannel.read(java.nio.ByteBuffer)
-
read
Reads a datagram from this channel into an array of byte buffers.The precondition for calling this method is that the channel is connected and the incoming datagram is from the connected address. If the buffers do not have enough remaining space to store the datagram, the part of the datagram that does not fit in the buffers is discarded. Otherwise, this method has the same behavior as the
readmethod in theScatteringByteChannelinterface.- Specified by:
readin interfaceScatteringByteChannel- Parameters:
targets- the byte buffers to store the received datagram.offset- a non-negative offset in the array of buffers, pointing to the starting buffer to store the bytes transferred, must not be bigger thantargets.length.length- a non-negative length to indicate the maximum number of buffers to be filled, must not be bigger thantargets.length - offset.- Returns:
- a non-negative number as the number of bytes read, or -1 if the read operation reaches the end of stream.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
ScatteringByteChannel.read(java.nio.ByteBuffer[], int, int)
-
read
Reads a datagram from this channel into an array of byte buffers.The precondition for calling this method is that the channel is connected and the incoming datagram is from the connected address. If the buffers do not have enough remaining space to store the datagram, the part of the datagram that does not fit in the buffers is discarded. Otherwise, this method has the same behavior as the
readmethod in theScatteringByteChannelinterface.- Specified by:
readin interfaceScatteringByteChannel- Parameters:
targets- the byte buffers to store the received datagram.- Returns:
- a non-negative number as the number of bytes read, or -1 if the read operation reaches the end of stream.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
ScatteringByteChannel.read(java.nio.ByteBuffer[])
-
write
Writes a datagram from the byte buffer to this channel.The precondition of calling this method is that the channel is connected and the datagram is sent to the connected address. Otherwise, this method has the same behavior as the
writemethod in theWritableByteChannelinterface.- Specified by:
writein interfaceWritableByteChannel- Parameters:
source- the byte buffer as the source of the datagram.- Returns:
- a non-negative number of bytes written.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
WritableByteChannel.write(java.nio.ByteBuffer)
-
write
Writes a datagram from the byte buffers to this channel.The precondition of calling this method is that the channel is connected and the datagram is sent to the connected address. Otherwise, this method has the same behavior as the
writemethod in theGatheringByteChannelinterface.- Specified by:
writein interfaceGatheringByteChannel- Parameters:
sources- the byte buffers as the source of the datagram.offset- a non-negative offset in the array of buffers, pointing to the starting buffer to be retrieved, must be no larger thansources.length.length- a non-negative length to indicate the maximum number of buffers to be submitted, must be no bigger thansources.length - offset.- Returns:
- the number of bytes written. If this method is called, it returns the number of bytes that where remaining in the byte buffers. If the channel is in non-blocking mode and there was not enough space for the datagram in the buffer, it may return zero.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
GatheringByteChannel.write(java.nio.ByteBuffer[], int, int)
-
write
Writes a datagram from the byte buffers to this channel.The precondition of calling this method is that the channel is connected and the datagram is sent to the connected address. Otherwise, this method has the same behavior as the write method in the
GatheringByteChannelinterface.- Specified by:
writein interfaceGatheringByteChannel- Parameters:
sources- the byte buffers as the source of the datagram.- Returns:
- the number of bytes written. If this method is called, it returns the number of bytes that where remaining in the byte buffer. If the channel is in non-blocking mode and there was not enough space for the datagram in the buffer, it may return zero.
- Throws:
NotYetConnectedException- if the channel is not connected yet.ClosedChannelException- if the channel is already closed.AsynchronousCloseException- if the channel is closed by another thread while this method is in operation.ClosedByInterruptException- if another thread interrupts the calling thread while the operation is in progress. The calling thread will have the interrupt state set and the channel will be closed.IOException- some other I/O error occurs.- See Also:
GatheringByteChannel.write(java.nio.ByteBuffer[])
-