com.gluonhq.connect.source
package contains classes that describe from what sources data can be
read from or written to.See: Description
Interface | Description |
---|---|
InputDataSource |
An InputDataSource is a class that returns an InputStream that acts as an input source to read data from.
|
IODataSource |
The IODataSource is a convenience interface that extends from both
InputDataSource and
OutputDataSource interfaces. |
OutputDataSource |
An OutputDataSource is a class that returns an OutputStream that acts as an output source to write data to.
|
Class | Description |
---|---|
BasicInputDataSource |
An implementation of
InputDataSource that takes any generic InputStream as its
source. |
BasicOutputDataSource |
An implementation of
OutputDataSource that takes any genericOutputStream as its
source. |
FileDataSource |
An implementation of
IODataSource that can read from and write to a file. |
RestDataSource |
An implementation of
IODataSource that can read from and write to an HTTP URL resource. |
com.gluonhq.connect.source
package contains classes that describe from what sources data can be
read from or written to.