Package org.apache.tomcat.websocket
Class AsyncChannelWrapperSecure
- java.lang.Object
-
- org.apache.tomcat.websocket.AsyncChannelWrapperSecure
-
- All Implemented Interfaces:
AsyncChannelWrapper
public class AsyncChannelWrapperSecure extends java.lang.Object implements AsyncChannelWrapper
Wraps theAsynchronousSocketChannel
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>
voidread(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>
voidwrite(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)
-
-
-
Method Detail
-
read
public java.util.concurrent.Future<java.lang.Integer> read(java.nio.ByteBuffer dst)
- Specified by:
read
in interfaceAsyncChannelWrapper
-
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 interfaceAsyncChannelWrapper
-
write
public java.util.concurrent.Future<java.lang.Integer> write(java.nio.ByteBuffer src)
- Specified by:
write
in interfaceAsyncChannelWrapper
-
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 interfaceAsyncChannelWrapper
-
close
public void close()
- Specified by:
close
in interfaceAsyncChannelWrapper
-
handshake
public java.util.concurrent.Future<java.lang.Void> handshake() throws javax.net.ssl.SSLException
- Specified by:
handshake
in interfaceAsyncChannelWrapper
- Throws:
javax.net.ssl.SSLException
-
getLocalAddress
public java.net.SocketAddress getLocalAddress() throws java.io.IOException
- Specified by:
getLocalAddress
in interfaceAsyncChannelWrapper
- Throws:
java.io.IOException
-
-