| Interface | Description |
|---|---|
| ByteStorage |
Interface for a storage that will temporarily save bytes.
|
| ByteStorageFactory |
Factory that creates
ByteStorage. |
| TemporaryDirectory |
A temporary directory is a directory that creates temporary files.
|
| TemporaryDirectoryFactory |
Factory that creates temporary directories.
|
| Class | Description |
|---|---|
| InMemoryByteStorageFactory |
ByteStorageFactory that creates ByteStorage instances that keep all data in
memory. |
| OverflowToDiskByteStorageFactory |
ByteStorageFactory that creates instances of ByteStorage that will keep some data
in memory and will overflow to disk when necessary. |
| TemporaryFile |
A temporary file or directory.
|