Interface LongRunningOperationParametersVersion1
-
- All Known Subinterfaces:
BuildOperationParametersVersion1
- All Known Implementing Classes:
ConsumerOperationParameters
@Deprecated public interface LongRunningOperationParametersVersion1
Deprecated.1.2-rc-1. UseBuildParameters
instead.DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.- Since:
- 1.0-milestone-3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ProgressListenerVersion1
getProgressListener()
Deprecated.Returns the listener to receive progress events.java.io.OutputStream
getStandardError()
Deprecated.Returns the output stream to write stderr logging to.java.io.InputStream
getStandardInput()
Deprecated.Returns the input stream to that can be consumed.java.io.OutputStream
getStandardOutput()
Deprecated.Returns the output stream to write stdout logging to.
-
-
-
Method Detail
-
getStandardOutput
java.io.OutputStream getStandardOutput()
Deprecated.Returns the output stream to write stdout logging to.- Returns:
- The output stream. May be null.
- Since:
- 1.0-milestone-3
-
getStandardError
java.io.OutputStream getStandardError()
Deprecated.Returns the output stream to write stderr logging to.- Returns:
- The output stream. May be null.
- Since:
- 1.0-milestone-3
-
getProgressListener
ProgressListenerVersion1 getProgressListener()
Deprecated.Returns the listener to receive progress events.- Returns:
- The listener. Must not be null.
- Since:
- 1.0-milestone-3
-
getStandardInput
java.io.InputStream getStandardInput()
Deprecated.Returns the input stream to that can be consumed.- Returns:
- The input stream. May be null.
- Since:
- 1.0-milestone-8
-
-