Interface TileSink


public interface TileSink
The TileSink interface is for writing individual rectangles of data to a data sink.
Since:
3.3.1
Author:
Peter Hollemans
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the tiling scheme used to write tiles to this sink.
    void
    Writes the specified tile to the sink.
  • Method Details

    • writeTile

      void writeTile(TilingScheme.Tile tile) throws IOException
      Writes the specified tile to the sink.
      Parameters:
      tile - the tile to write.
      Throws:
      IOException - if an error occurred writing the tile data.
    • getScheme

      TilingScheme getScheme()
      Gets the tiling scheme used to write tiles to this sink.
      Returns:
      the tiling scheme.