Class MagnetConnection2.MagnetOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.biglybt.core.util.protocol.magnet.MagnetConnection2.MagnetOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
- Enclosing class:
- MagnetConnection2
private class MagnetConnection2.MagnetOutputStream extends java.io.OutputStream
-
-
Field Summary
Fields Modifier and Type Field Description private int
available
private AESemaphore
buffer_sem
private java.util.LinkedList<byte[]>
buffers
private boolean
closed
private long
last_read
private int
read_active
-
Constructor Summary
Constructors Modifier Constructor Description private
MagnetOutputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private int
available()
void
close()
private int
read()
private int
read(byte[] buffer, int off, int len)
private void
timerCheck()
void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Field Detail
-
buffers
private final java.util.LinkedList<byte[]> buffers
-
available
private int available
-
buffer_sem
private final AESemaphore buffer_sem
-
closed
private boolean closed
-
last_read
private long last_read
-
read_active
private int read_active
-
-
Method Detail
-
timerCheck
private void timerCheck()
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
read
private int read() throws java.io.IOException
- Throws:
java.io.IOException
-
read
private int read(byte[] buffer, int off, int len) throws java.io.IOException
- Throws:
java.io.IOException
-
available
private int available() throws java.io.IOException
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-