Interface CustomDecoder


  • public interface CustomDecoder
    A custom decoder interface. Implementing classes can be called from inside a .ksy file using `process: XXX` syntax.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      byte[] decode​(byte[] src)
      Decodes a given byte array, according to some custom algorithm (specific to implementing class) and parameters given in the constructor, returning another byte array.
    • Method Detail

      • decode

        byte[] decode​(byte[] src)
        Decodes a given byte array, according to some custom algorithm (specific to implementing class) and parameters given in the constructor, returning another byte array.
        Parameters:
        src - source byte array
        Returns:
        decoded byte array