インタフェース IStreamCommand

既知の実装クラスのリスト:
AbstractStreamCommand, ConsumerCommand, convert, ConvertCommand, CsvNavigateCommand, JsonNavigateCommand, SampleStreamCommand, SendHttpCommand, ValidateCommand, XmlNavigateCommand

public interface IStreamCommand
Interface for stream commands.

This interface defines a method for executing a command on an input stream and writing the result to an output stream.

  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    void
    execute(InputStream inputStream, OutputStream outputStream)
    Executes the command on the provided input stream and writes the result to the output stream.
  • メソッドの詳細

    • execute

      void execute(InputStream inputStream, OutputStream outputStream) throws IOException
      Executes the command on the provided input stream and writes the result to the output stream.
      パラメータ:
      inputStream - The input stream to read data from.
      outputStream - The output stream to write data to.
      例外:
      IOException - If an I/O error occurs during the execution of the command.