FileDocCategorySizeDatePackage
DatagramChannel.javaAPI DocAndroid 1.5 API21103Wed May 06 22:41:04 BST 2009java.nio.channels

DatagramChannel

public abstract class DatagramChannel extends AbstractSelectableChannel implements ByteChannel, GatheringByteChannel, ScatteringByteChannel
A {@code DatagramChannel} is a selectable channel that represents a partial abstraction of a datagram socket. The {@code socket} method of this class can return the related {@code DatagramSocket} instance, which can handle the socket.

A datagram channel is open but not connected when created with the {@code 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 {@code read} or {@code write}, a connected channel is required.

Datagram channels are thread-safe; only one thread can read or write at the same time.

since
Android 1.0

Fields Summary
Constructors Summary
protected DatagramChannel(SelectorProvider selectorProvider)
Constructs a new {@code DatagramChannel}.

param
selectorProvider an instance of SelectorProvider.
since
Android 1.0

        Platform.getNetworkSystem().oneTimeInitialization(true);
    
        super(selectorProvider);
    
Methods Summary
public abstract java.nio.channels.DatagramChannelconnect(java.net.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.

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 {@link DatagramSocket} class.

param
address the address to be connected to.
return
this channel.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
SecurityException if there is a security manager, and the address is not permitted to be accessed.
throws
IOException if some other I/O error occurrs.
since
Android 1.0

public abstract java.nio.channels.DatagramChanneldisconnect()
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.

return
this channel.
throws
IOException some other I/O error occurs.
since
Android 1.0

public abstract booleanisConnected()
Returns whether this channel's socket is connected or not.

return
true if this channel's socket is connected; false otherwise.
since
Android 1.0

public static java.nio.channels.DatagramChannelopen()
Creates an opened and not-connected datagram channel.

This channel is created by calling the openDatagramChannel method of the default {@link SelectorProvider} instance.

return
the new channel which is open but not connected.
throws
IOException if some I/O error occurs.
since
Android 1.0

        return SelectorProvider.provider().openDatagramChannel();
    
public abstract intread(java.nio.ByteBuffer target)
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 {@code read} method in the {@link ReadableByteChannel} interface.

see
java.nio.channels.ReadableByteChannel#read(java.nio.ByteBuffer)
param
target the byte buffer to store the received datagram.
return
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.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

public abstract longread(java.nio.ByteBuffer[] targets, int offset, int length)
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 {@code read} method in the {@link ScatteringByteChannel} interface.

see
java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[], int, int)
param
targets the byte buffers to store the received datagram.
param
offset a non-negative offset in the array of buffers, pointing to the starting buffer to store the bytes transferred, must not be bigger than {@code targets.length}.
param
length a non-negative length to indicate the maximum number of buffers to be filled, must not be bigger than {@code targets.length - offset}.
return
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.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

public final synchronized longread(java.nio.ByteBuffer[] targets)
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 {@code read} method in the {@link ScatteringByteChannel} interface.

see
java.nio.channels.ScatteringByteChannel#read(java.nio.ByteBuffer[])
param
targets the byte buffers to store the received datagram.
return
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.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

        return read(targets, 0, targets.length);
    
public abstract java.net.SocketAddressreceive(java.nio.ByteBuffer target)
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 {@code null} immediately. 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 {@link DatagramSocket} class.

param
target the byte buffer to store the received datagram.
return
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.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
SecurityException if there is a security manager, and the address is not permitted to be accessed.
throws
IOException some other I/O error occurs.
since
Android 1.0

public abstract intsend(java.nio.ByteBuffer source, java.net.SocketAddress address)
Sends a datagram through this channel. The datagram consists of the remaining bytes in {@code source}.

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 {@link DatagramSocket} class.

param
source the byte buffer with the datagram to be sent.
param
address the destination address for the datagram.
return
the number of bytes sent. This is the number of bytes remaining in {@code source} or 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.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
SecurityException if there is a security manager, and the address is not permitted to access.
throws
IOException some other I/O error occurs.
since
Android 1.0

public abstract java.net.DatagramSocketsocket()
Returns the related datagram socket of this channel, which does not define additional public methods to those defined by {@link DatagramSocket}.

return
the related DatagramSocket instance.
since
Android 1.0

public final intvalidOps()
Gets the valid operations of this channel. Datagram channels support read and write operations, so this method returns ( SelectionKey.OP_READ | SelectionKey.OP_WRITE ).

see
java.nio.channels.SelectableChannel#validOps()
return
valid operations in bit-set.
since
Android 1.0

        return (SelectionKey.OP_READ | SelectionKey.OP_WRITE);
    
public abstract intwrite(java.nio.ByteBuffer source)
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 {@code write} method in the {@link WritableByteChannel} interface.

see
java.nio.channels.WritableByteChannel#write(java.nio.ByteBuffer)
param
source the byte buffer as the source of the datagram.
return
a non-negative number of bytes written.
throws
NotYetConnectedException if the channel is not connected yet.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

public abstract longwrite(java.nio.ByteBuffer[] sources, int offset, int length)
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 {@code write} method in the {@link GatheringByteChannel} interface.

see
java.nio.channels.GatheringByteChannel#write(java.nio.ByteBuffer[], int, int)
param
sources the byte buffers as the source of the datagram.
param
offset a non-negative offset in the array of buffers, pointing to the starting buffer to be retrieved, must be no larger than {@code sources.length}.
param
length a non-negative length to indicate the maximum number of buffers to be submitted, must be no bigger than {@code sources.length - offset}.
return
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.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

public final synchronized longwrite(java.nio.ByteBuffer[] sources)
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 {@link GatheringByteChannel} interface.

see
java.nio.channels.GatheringByteChannel#write(java.nio.ByteBuffer[])
param
sources the byte buffers as the source of the datagram.
return
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.
throws
ClosedChannelException if the channel is already closed.
throws
AsynchronousCloseException if the channel is closed by another thread while this method is in operation.
throws
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.
throws
IOException some other I/O error occurs.
since
Android 1.0

        return write(sources, 0, sources.length);