Class ChannelFunctionReadableByteChannel
- java.lang.Object
-
- io.undertow.websockets.core.function.ChannelFunctionReadableByteChannel
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.nio.channels.Channel,java.nio.channels.ReadableByteChannel
public class ChannelFunctionReadableByteChannel extends java.lang.Object implements java.nio.channels.ReadableByteChannel- Author:
- Norman Maurer
-
-
Constructor Summary
Constructors Constructor Description ChannelFunctionReadableByteChannel(java.nio.channels.ReadableByteChannel channel, ChannelFunction... functions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanisOpen()intread(java.nio.ByteBuffer dst)
-
-
-
Constructor Detail
-
ChannelFunctionReadableByteChannel
public ChannelFunctionReadableByteChannel(java.nio.channels.ReadableByteChannel channel, ChannelFunction... functions)
-
-
Method Detail
-
read
public int read(java.nio.ByteBuffer dst) throws java.io.IOException- Specified by:
readin interfacejava.nio.channels.ReadableByteChannel- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpenin interfacejava.nio.channels.Channel
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.nio.channels.Channel- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
-