Interface Encoder<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean encode​(T data, java.io.File file, Options options)
      Writes the given data to the given output stream and returns True if the write completed successfully and should be committed.
    • Method Detail

      • encode

        boolean encode​(@NonNull
                       T data,
                       @NonNull
                       java.io.File file,
                       @NonNull
                       Options options)
        Writes the given data to the given output stream and returns True if the write completed successfully and should be committed.
        Parameters:
        data - The data to write.
        file - The file to write the data to.
        options - The set of options to apply when encoding.