Class AsynchronousTlsChannel

java.lang.Object
tlschannel.async.AsynchronousTlsChannel
All Implemented Interfaces:
java.io.Closeable, java.lang.AutoCloseable, java.nio.channels.AsynchronousByteChannel, java.nio.channels.AsynchronousChannel, java.nio.channels.Channel, ExtendedAsynchronousByteChannel

public class AsynchronousTlsChannel
extends java.lang.Object
implements ExtendedAsynchronousByteChannel
An AsynchronousByteChannel that works using TlsChannels.
  • Constructor Summary

    Constructors 
    Constructor Description
    AsynchronousTlsChannel​(AsynchronousTlsChannelGroup channelGroup, TlsChannel tlsChannel, java.nio.channels.SocketChannel socketChannel)
    Initializes a new instance of this class.
  • Method Summary

    Modifier and Type Method Description
    void close()
    Closes this channel.
    boolean isOpen()
    Tells whether or not this channel is open.
    java.util.concurrent.Future<java.lang.Integer> read​(java.nio.ByteBuffer dst)  
    <A> void read​(java.nio.ByteBuffer[] dsts, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,​? super A> handler)
    Reads a sequence of bytes from this channel into a subsequence of the given buffers.
    <A> void read​(java.nio.ByteBuffer dst, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
    Reads a sequence of bytes from this channel into the given buffer.
    <A> void read​(java.nio.ByteBuffer dst, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)  
    java.util.concurrent.Future<java.lang.Integer> write​(java.nio.ByteBuffer src)  
    <A> void write​(java.nio.ByteBuffer[] srcs, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,​? super A> handler)
    Writes a sequence of bytes to this channel from a subsequence of the given buffers.
    <A> void write​(java.nio.ByteBuffer src, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
    Writes a sequence of bytes to this channel from the given buffer.
    <A> void write​(java.nio.ByteBuffer src, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • AsynchronousTlsChannel

      public AsynchronousTlsChannel​(AsynchronousTlsChannelGroup channelGroup, TlsChannel tlsChannel, java.nio.channels.SocketChannel socketChannel) throws java.nio.channels.ClosedChannelException, java.lang.IllegalArgumentException
      Initializes a new instance of this class.
      Parameters:
      channelGroup - group to associate new new channel to
      tlsChannel - existing TLS channel to be used asynchronously
      socketChannel - underlying socket
      Throws:
      java.nio.channels.ClosedChannelException - if any of the underlying channels are closed.
      java.lang.IllegalArgumentException - is the socket is in blocking mode
  • Method Details

    • read

      public <A> void read​(java.nio.ByteBuffer dst, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
      Specified by:
      read in interface java.nio.channels.AsynchronousByteChannel
    • read

      public <A> void read​(java.nio.ByteBuffer dst, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
      Description copied from interface: ExtendedAsynchronousByteChannel
      Reads a sequence of bytes from this channel into the given buffer.

      This method initiates an asynchronous read operation to read a sequence of bytes from this channel into the given buffer. The handler parameter is a completion handler that is invoked when the read operation completes (or fails). The result passed to the completion handler is the number of bytes read or -1 if no bytes could be read because the channel has reached end-of-stream.

      If a timeout is specified and the timeout elapses before the operation completes then the operation completes with the exception InterruptedByTimeoutException. Where a timeout occurs, and the implementation cannot guarantee that bytes have not been read, or will not be read from the channel into the given buffer, then further attempts to read from the channel will cause an unspecific runtime exception to be thrown.

      Otherwise this method works in the same manner as the AsynchronousByteChannel.read(ByteBuffer,Object,CompletionHandler) method.

      Specified by:
      read in interface ExtendedAsynchronousByteChannel
      Type Parameters:
      A - The type for the object to the attached to the operation
      Parameters:
      dst - The buffer into which bytes are to be transferred
      timeout - The maximum time for the I/O operation to complete
      unit - The time unit of the timeout argument
      attach - The object to attach to the I/O operation; can be null
      handler - The handler for consuming the result
    • read

      public <A> void read​(java.nio.ByteBuffer[] dsts, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,​? super A> handler)
      Description copied from interface: ExtendedAsynchronousByteChannel
      Reads a sequence of bytes from this channel into a subsequence of the given buffers. This operation, sometimes called a scattering read, is often useful when implementing network protocols that group data into segments consisting of one or more fixed-length headers followed by a variable-length body. The handler parameter is a completion handler that is invoked when the read operation completes (or fails). The result passed to the completion handler is the number of bytes read or -1 if no bytes could be read because the channel has reached end-of-stream.

      This method initiates a read of up to r bytes from this channel, where r is the total number of bytes remaining in the specified subsequence of the given buffer array, that is,

       dsts[offset].remaining()
           + dsts[offset+1].remaining()
           + ... + dsts[offset+length-1].remaining()
      at the moment that the read is attempted.

      Suppose that a byte sequence of length n is read, where 0  < n <= r. Up to the first dsts[offset].remaining() bytes of this sequence are transferred into buffer dsts[offset], up to the next dsts[offset+1].remaining() bytes are transferred into buffer dsts[offset+1], and so forth, until the entire byte sequence is transferred into the given buffers. As many bytes as possible are transferred into each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit. The underlying operating system may impose a limit on the number of buffers that may be used in an I/O operation. Where the number of buffers (with bytes remaining), exceeds this limit, then the I/O operation is performed with the maximum number of buffers allowed by the operating system.

      If a timeout is specified and the timeout elapses before the operation completes then it completes with the exception InterruptedByTimeoutException. Where a timeout occurs, and the implementation cannot guarantee that bytes have not been read, or will not be read from the channel into the given buffers, then further attempts to read from the channel will cause an unspecific runtime exception to be thrown.

      Specified by:
      read in interface ExtendedAsynchronousByteChannel
      Type Parameters:
      A - The type for the object to the attached to the operation
      Parameters:
      dsts - The buffers into which bytes are to be transferred
      offset - The offset within the buffer array of the first buffer into which bytes are to be transferred; must be non-negative and no larger than dsts.length
      length - The maximum number of buffers to be accessed; must be non-negative and no larger than dsts.length - offset
      timeout - The maximum time for the I/O operation to complete
      unit - The time unit of the timeout argument
      attach - The object to attach to the I/O operation; can be null
      handler - The handler for consuming the result
    • read

      public java.util.concurrent.Future<java.lang.Integer> read​(java.nio.ByteBuffer dst)
      Specified by:
      read in interface java.nio.channels.AsynchronousByteChannel
    • write

      public <A> void write​(java.nio.ByteBuffer src, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
      Specified by:
      write in interface java.nio.channels.AsynchronousByteChannel
    • write

      public <A> void write​(java.nio.ByteBuffer src, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Integer,​? super A> handler)
      Description copied from interface: ExtendedAsynchronousByteChannel
      Writes a sequence of bytes to this channel from the given buffer.

      This method initiates an asynchronous write operation to write a sequence of bytes to this channel from the given buffer. The handler parameter is a completion handler that is invoked when the write operation completes (or fails). The result passed to the completion handler is the number of bytes written.

      If a timeout is specified and the timeout elapses before the operation completes then it completes with the exception InterruptedByTimeoutException. Where a timeout occurs, and the implementation cannot guarantee that bytes have not been written, or will not be written to the channel from the given buffer, then further attempts to write to the channel will cause an unspecific runtime exception to be thrown.

      Otherwise this method works in the same manner as the AsynchronousByteChannel.write(ByteBuffer,Object,CompletionHandler) method.

      Specified by:
      write in interface ExtendedAsynchronousByteChannel
      Type Parameters:
      A - The type for the object to the attached to the operation
      Parameters:
      src - The buffer from which bytes are to be retrieved
      timeout - The maximum time for the I/O operation to complete
      unit - The time unit of the timeout argument
      attach - The object to attach to the I/O operation; can be null
      handler - The handler for consuming the result
    • write

      public <A> void write​(java.nio.ByteBuffer[] srcs, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attach, java.nio.channels.CompletionHandler<java.lang.Long,​? super A> handler)
      Description copied from interface: ExtendedAsynchronousByteChannel
      Writes a sequence of bytes to this channel from a subsequence of the given buffers. This operation, sometimes called a gathering write, is often useful when implementing network protocols that group data into segments consisting of one or more fixed-length headers followed by a variable-length body. The handler parameter is a completion handler that is invoked when the write operation completes (or fails). The result passed to the completion handler is the number of bytes written.

      This method initiates a write of up to r bytes to this channel, where r is the total number of bytes remaining in the specified subsequence of the given buffer array, that is,

       srcs[offset].remaining()
           + srcs[offset+1].remaining()
           + ... + srcs[offset+length-1].remaining()
      at the moment that the write is attempted.

      Suppose that a byte sequence of length n is written, where 0  < n <= r. Up to the first srcs[offset].remaining() bytes of this sequence are written from buffer srcs[offset], up to the next srcs[offset+1].remaining() bytes are written from buffer srcs[offset+1], and so forth, until the entire byte sequence is written. As many bytes as possible are written from each buffer, hence the final position of each updated buffer, except the last updated buffer, is guaranteed to be equal to that buffer's limit. The underlying operating system may impose a limit on the number of buffers that may be used in an I/O operation. Where the number of buffers (with bytes remaining), exceeds this limit, then the I/O operation is performed with the maximum number of buffers allowed by the operating system.

      If a timeout is specified and the timeout elapses before the operation completes then it completes with the exception InterruptedByTimeoutException. Where a timeout occurs, and the implementation cannot guarantee that bytes have not been written, or will not be written to the channel from the given buffers, then further attempts to write to the channel will cause an unspecific runtime exception to be thrown.

      Specified by:
      write in interface ExtendedAsynchronousByteChannel
      Type Parameters:
      A - The type for the object to the attached to the operation
      Parameters:
      srcs - The buffers from which bytes are to be retrieved
      offset - The offset within the buffer array of the first buffer from which bytes are to be retrieved; must be non-negative and no larger than srcs.length
      length - The maximum number of buffers to be accessed; must be non-negative and no larger than srcs.length - offset
      timeout - The maximum time for the I/O operation to complete
      unit - The time unit of the timeout argument
      attach - The object to attach to the I/O operation; can be null
      handler - The handler for consuming the result
    • write

      public java.util.concurrent.Future<java.lang.Integer> write​(java.nio.ByteBuffer src)
      Specified by:
      write in interface java.nio.channels.AsynchronousByteChannel
    • isOpen

      public boolean isOpen()
      Tells whether or not this channel is open.
      Specified by:
      isOpen in interface java.nio.channels.Channel
      Returns:
      true if, and only if, this channel is open
    • close

      public void close() throws java.io.IOException
      Closes this channel.

      This method will close the underlying TlsChannel and also deregister it from its group.

      Specified by:
      close in interface java.nio.channels.AsynchronousChannel
      Specified by:
      close in interface java.lang.AutoCloseable
      Specified by:
      close in interface java.nio.channels.Channel
      Specified by:
      close in interface java.io.Closeable
      Throws:
      java.io.IOException - If an I/O error occurs