Package | Description |
---|---|
net.i2p.client.streaming |
Implements a TCP-like (reliable, authenticated, in order) set of sockets for
communicating over the IP-like (unreliable, unauthenticated, unordered) I2P
messages.
|
Modifier and Type | Method and Description |
---|---|
ByteCollector |
ByteCollector.append(byte b)
Deprecated.
Add a new byte to the collector (extending the buffer if necessary)
|
ByteCollector |
ByteCollector.append(byte[] b)
Deprecated.
Add new bytes to the collector (extending the buffer if necessary)
|
ByteCollector |
ByteCollector.append(byte[] b,
int len)
Deprecated.
Add new bytes to the collector (extending the buffer if necessary)
|
ByteCollector |
ByteCollector.append(byte[] b,
int off,
int len)
Deprecated.
Add new bytes to the collector (extending the buffer if necessary)
|
ByteCollector |
ByteCollector.append(ByteCollector bc)
Deprecated.
Add the contents of the byte collector to the current collector (extending the buffer if necessary)
|
Modifier and Type | Method and Description |
---|---|
ByteCollector |
ByteCollector.append(ByteCollector bc)
Deprecated.
Add the contents of the byte collector to the current collector (extending the buffer if necessary)
|
int |
ByteCollector.indexOf(ByteCollector bc)
Deprecated.
Search through the collector for the first occurrence of the sequence of
bytes contained within the specified collector
|