Class AsyncChannelWrapperSecure

  • All Implemented Interfaces:
    AsyncChannelWrapper

    public class AsyncChannelWrapperSecure
    extends java.lang.Object
    implements AsyncChannelWrapper
    Wraps the AsynchronousSocketChannel with SSL/TLS. This needs a lot more testing before it can be considered robust.
    • Constructor Summary

      Constructors 
      Constructor Description
      AsyncChannelWrapperSecure​(java.nio.channels.AsynchronousSocketChannel socketChannel, javax.net.ssl.SSLEngine sslEngine)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()  
      java.net.SocketAddress getLocalAddress()  
      java.util.concurrent.Future<java.lang.Void> handshake()  
      java.util.concurrent.Future<java.lang.Integer> read​(java.nio.ByteBuffer dst)  
      <B,​A extends B>
      void
      read​(java.nio.ByteBuffer dst, A attachment, java.nio.channels.CompletionHandler<java.lang.Integer,​B> handler)  
      java.util.concurrent.Future<java.lang.Integer> write​(java.nio.ByteBuffer src)  
      <B,​A extends B>
      void
      write​(java.nio.ByteBuffer[] srcs, int offset, int length, long timeout, java.util.concurrent.TimeUnit unit, A attachment, java.nio.channels.CompletionHandler<java.lang.Long,​B> handler)  
      • Methods inherited from class java.lang.Object

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

      • AsyncChannelWrapperSecure

        public AsyncChannelWrapperSecure​(java.nio.channels.AsynchronousSocketChannel socketChannel,
                                         javax.net.ssl.SSLEngine sslEngine)
    • Method Detail

      • read

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

        public <B,​A extends B> void read​(java.nio.ByteBuffer dst,
                                               A attachment,
                                               java.nio.channels.CompletionHandler<java.lang.Integer,​B> handler)
        Specified by:
        read in interface AsyncChannelWrapper
      • write

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

        public <B,​A extends B> void write​(java.nio.ByteBuffer[] srcs,
                                                int offset,
                                                int length,
                                                long timeout,
                                                java.util.concurrent.TimeUnit unit,
                                                A attachment,
                                                java.nio.channels.CompletionHandler<java.lang.Long,​B> handler)
        Specified by:
        write in interface AsyncChannelWrapper
      • handshake

        public java.util.concurrent.Future<java.lang.Void> handshake()
                                                              throws javax.net.ssl.SSLException
        Specified by:
        handshake in interface AsyncChannelWrapper
        Throws:
        javax.net.ssl.SSLException
      • getLocalAddress

        public java.net.SocketAddress getLocalAddress()
                                               throws java.io.IOException
        Specified by:
        getLocalAddress in interface AsyncChannelWrapper
        Throws:
        java.io.IOException