インタフェース 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
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.
-