Interface SysCallFn


public interface SysCallFn
Generator for system commands that realize filters
Author:
raven
  • Method Details

    • buildCheckCmd

      String[] buildCheckCmd()
    • buildCmdForFileToStream

      default String[] buildCmdForFileToStream(Path input)
      Parameters:
      input - The input file. If null, the request is for command should be able to deal with input from stream.
      output - The output file. If null, the request is for the command's output to be suitable for use with an output stream.
      Returns:
      The command strings or null if invocation with the provided arguments is not possible
    • buildCmdForStreamToFile

      default String[] buildCmdForStreamToFile(Path input)
    • buildCmdForStreamToStream

      default String[] buildCmdForStreamToStream()
    • buildCmdForFileToFile

      default String[] buildCmdForFileToFile(Path input, Path output)