Class ChannelFunctionWritableByteChannel
- java.lang.Object
-
- io.undertow.websockets.core.function.ChannelFunctionWritableByteChannel
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.nio.channels.Channel
,java.nio.channels.WritableByteChannel
public class ChannelFunctionWritableByteChannel extends java.lang.Object implements java.nio.channels.WritableByteChannel
- Author:
- Norman Maurer
-
-
Constructor Summary
Constructors Constructor Description ChannelFunctionWritableByteChannel(java.nio.channels.WritableByteChannel channel, ChannelFunction... functions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
isOpen()
int
write(java.nio.ByteBuffer src)
-
-
-
Constructor Detail
-
ChannelFunctionWritableByteChannel
public ChannelFunctionWritableByteChannel(java.nio.channels.WritableByteChannel channel, ChannelFunction... functions)
-
-
Method Detail
-
write
public int write(java.nio.ByteBuffer src) throws java.io.IOException
- Specified by:
write
in interfacejava.nio.channels.WritableByteChannel
- Throws:
java.io.IOException
-
isOpen
public boolean isOpen()
- Specified by:
isOpen
in interfacejava.nio.channels.Channel
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.nio.channels.Channel
- Specified by:
close
in interfacejava.io.Closeable
- Throws:
java.io.IOException
-
-