Package io.fabric8.kubernetes.client.dsl
Interface TtyExecErrorable
-
- All Superinterfaces:
Execable,ExecListenable,TtyExecable,TtyExecErrorChannelable
- All Known Subinterfaces:
ContainerResource,PodResource,TtyExecOutputErrorable
public interface TtyExecErrorable extends TtyExecErrorChannelable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TtyExecErrorChannelableredirectingError()Will provide anInputStreamviaExecWatch.getError()TtyExecErrorChannelableterminateOnError()If theExecWatchshould terminate when a stdErr message is received.TtyExecErrorChannelablewritingError(OutputStream in)Should only be called with a minimally blocking or non-blocking stream-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.Execable
attach, exec, withReadyWaitTimeout
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.ExecListenable
usingListener
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.TtyExecable
withTTY
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.TtyExecErrorChannelable
redirectingErrorChannel, writingErrorChannel
-
-
-
-
Method Detail
-
writingError
TtyExecErrorChannelable writingError(OutputStream in)
Should only be called with a minimally blocking or non-blocking streamIn particular do no use a
PipedOutputStream- useredirectingError()instead
-
terminateOnError
TtyExecErrorChannelable terminateOnError()
If theExecWatchshould terminate when a stdErr message is received. The message will be provided as an exceptional outcome ofExecWatch.exitCode()
-
redirectingError
TtyExecErrorChannelable redirectingError()
Will provide anInputStreamviaExecWatch.getError()WARNING: the resulting stream must be fully read or closed for other events to be processed properly
-
-