Package | Description |
---|---|
ca.randolf.net.cs |
These are Client/Server internet I/O classes that encapsulate multiple sets of streams over a single Socket connection (the use of TLS/SSL Sockets is strongly encouraged, but not required). A few key advantages with these classes is that server Operating Systems ultimately don't need to be configured to support as many socket connections, initialization/authentication steps don't need to be repeated (as may normally be the case when opening additional sockets), and built-in compression can help to reduce bandwidth requirements.
|
Constructor and Description |
---|
Iceberg(byte... rawData)
Instantiation of newly-received data (inbound). The River ID, flags,
and data are extracted on-the-fly, and an Exception is thrown only if a
problem with the data is encountered.
|
Iceberg(java.io.InputStream is)
Instantiation of newly-received data (inbound). The River ID, flags,
and data are extracted on-the-fly, and an Exception is thrown only if a
problem with the data is encountered.
|