Module com.gluonhq.connect
Package com.gluonhq.connect.source
The
com.gluonhq.connect.source
package contains classes that describe from what sources data can be
read from or written to.-
Interface Summary 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 bothInputDataSource
andOutputDataSource
interfaces.OutputDataSource An OutputDataSource is a class that returns an OutputStream that acts as an output source to write data to. -
Class Summary Class Description BasicInputDataSource An implementation ofInputDataSource
that takes any genericInputStream
as its source.BasicOutputDataSource An implementation ofOutputDataSource
that takes any genericOutputStream
as its source.FileDataSource An implementation ofIODataSource
that can read from and write to a file.RestDataSource An implementation ofIODataSource
that can read from and write to an HTTP URL resource.