Interface ITileOperation

All Known Implementing Classes:
AbstractTileOperation, TileCompressor, TileDecompressor

public interface ITileOperation
(for internal use) Interface for performing parallel operations on serialized 2D image tiles.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    setDimensions(int dataOffset, int width, int height)
    Specifies the location of the tile in the serialized buffer.
    void
    Waits until the parallelized operation is complete
  • Method Details

    • setDimensions

      ITileOperation setDimensions(int dataOffset, int width, int height)
      Specifies the location of the tile in the serialized buffer.
      Parameters:
      dataOffset - the byte offset at which the tile data begins.
      width - the width of the tile in pixels.
      height - the tile height in pixels.
      Returns:
      itself.
    • waitForResult

      void waitForResult()
      Waits until the parallelized operation is complete