Interface ExecState
-
@Immutable public interface ExecStateAn object that represents the JSON returned by the Docker API for low-level information about exec commands.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerInfocontainer()StringcontainerId()LongexitCode()Stringid()BooleanopenStderr()BooleanopenStdin()BooleanopenStdout()ProcessConfigprocessConfig()Booleanrunning()
-
-
-
Method Detail
-
id
String id()
-
running
Boolean running()
-
exitCode
Long exitCode()
-
processConfig
ProcessConfig processConfig()
-
openStdin
Boolean openStdin()
-
openStdout
Boolean openStdout()
-
openStderr
Boolean openStderr()
-
container
ContainerInfo container()
-
containerId
String containerId()
-
-