Class DetachedByteChannel
- java.lang.Object
-
- com.sedmelluq.discord.lavaplayer.tools.io.DetachedByteChannel
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.nio.channels.Channel,java.nio.channels.ReadableByteChannel
public class DetachedByteChannel extends java.lang.Object implements java.nio.channels.ReadableByteChannelCreates a readable byte channel which can be closed without closing the underlying channel.
-
-
Constructor Summary
Constructors Constructor Description DetachedByteChannel(java.nio.channels.ReadableByteChannel delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanisOpen()intread(java.nio.ByteBuffer output)
-
-
-
Method Detail
-
read
public int read(java.nio.ByteBuffer output) 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
-
-