package niol
- Alphabetic
- By Inheritance
- niol
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
IncompleteReadException extends Exception
Thrown when a
readoperation couldn't complete as expected.Thrown when a
readoperation couldn't complete as expected. It is thrown when there isn't enough data to retrive and some data has already been read. -
class
IncompleteWriteException extends Exception
Thrown when a
writeoperation couldn't complete as expected.Thrown when a
writeoperation couldn't complete as expected. It is thrown when there isn't enough space and some data has already been written. -
trait
NiolInput extends AnyRef
An advanced input.
-
trait
NiolOutput extends AnyRef
An advanced output.
-
class
NotEnoughDataException extends Exception
Thrown when there isn't enough data to read.
Thrown when there isn't enough data to read. It is thrown before any data is read.
-
class
NotEnoughSpaceException extends Exception
Thrown when there isn't enough space to write the data.
Thrown when there isn't enough space to write the data. It is thrown before any data is written.
-
trait
Readable extends AnyRef
Trait for objects that can be read from NiolInput.
-
trait
Reader[+A] extends AnyRef
A reader can read some objects from NiolInput.
A reader can read some objects from NiolInput.
- A
the result type
-
trait
Writeable extends AnyRef
Trait for objects that can be written to NiolOutput.
-
trait
Writer[-A] extends AnyRef
A writer can write some objects to NiolOutput.
A writer can write some objects to NiolOutput.
- A
the object type