Package io.fabric8.kubernetes.client.dsl
Interface TtyExecOutputErrorable
-
- All Superinterfaces:
Execable,ExecListenable,TtyExecable,TtyExecErrorable,TtyExecErrorChannelable
- All Known Subinterfaces:
ContainerResource,PodResource
public interface TtyExecOutputErrorable extends TtyExecErrorable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TtyExecErrorableredirectingOutput()Will provide anInputStreamviaExecWatch.getOutput()TtyExecErrorablewritingOutput(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.TtyExecErrorable
redirectingError, terminateOnError, writingError
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.TtyExecErrorChannelable
redirectingErrorChannel, writingErrorChannel
-
-
-
-
Method Detail
-
writingOutput
TtyExecErrorable writingOutput(OutputStream in)
Should only be called with a minimally blocking or non-blocking streamIn particular do no use a
PipedOutputStream- useredirectingOutput()instead
-
redirectingOutput
TtyExecErrorable redirectingOutput()
Will provide anInputStreamviaExecWatch.getOutput()WARNING: the resulting stream must be fully read or closed for other events to be processed properly
-
-