Uses of Class
com.streamconverter.CommandResult
Packages that use CommandResult
Package
Description
-
Uses of CommandResult in com.streamconverter
Methods in com.streamconverter that return CommandResultModifier and TypeMethodDescriptionCommandResult.Builder.build()
CommandResultインスタンスを生成static CommandResult
CommandResult.failure
(String commandName, long executionTime, String errorMessage, Instant startTime, Instant endTime) 失敗結果を作成するヘルパーメソッドstatic CommandResult
CommandResult.success
(String commandName, long executionTime, long inputBytes, long outputBytes, Instant startTime, Instant endTime) 成功結果を作成するヘルパーメソッドMethods in com.streamconverter that return types with arguments of type CommandResultModifier and TypeMethodDescriptionStreamConverter.run
(InputStream inputStream, OutputStream outputStream) 非同期並列処理でストリームを変換する。 メモリ効率を重視し、PipedStreamを使用して大容量ファイルに対応。 自動的にExecutionContextを生成してMDC同期を実現する。StreamConverter.run
(InputStream inputStream, OutputStream outputStream, ExecutionContext context) カスタムExecutionContextを使用してストリームを変換する。 マルチスレッド環境でのMDCコンテキスト伝播とログトレーサビリティを実現。 -
Uses of CommandResult in com.streamconverter.benchmark
Method parameters in com.streamconverter.benchmark with type arguments of type CommandResultModifier and TypeMethodDescriptionvoid
PerformanceAnalyzer.addRecord
(String testName, List<CommandResult> results, long totalDataSize) CommandResult配列からパフォーマンス記録を追加 -
Uses of CommandResult in com.streamconverter.controller
Methods in com.streamconverter.controller that return types with arguments of type CommandResultModifier and TypeMethodDescriptionfinal List
<CommandResult> AbstractStreamController.process
(InputStream inputStream, OutputStream outputStream) Processes data from input stream to output stream using the configured command pipeline.IStreamController.process
(InputStream inputStream, OutputStream outputStream) Processes data from the input stream and writes results to the output stream.