com.fitbur.github.dockerjava.api.command.ExecStartCmd Maven / Gradle / Ivy
package com.fitbur.github.dockerjava.api.com.fitburmand;
import java.io.InputStream;
import com.fitbur.github.dockerjava.api.NotFoundException;
public interface ExecStartCmd extends SyncDockerCmd {
public String getExecId();
public ExecStartCmd withExecId(String execId);
public boolean hasDetachEnabled();
public ExecStartCmd withDetach(boolean com.fitburtach);
public ExecStartCmd withDetach();
public boolean hasTtyEnabled();
public ExecStartCmd withTty(boolean tty);
public ExecStartCmd withTty();
/**
* Its the responsibility of the caller to consume and/or close the {@link InputStream} to prevent connection leaks.
*
* @throws com.fitbur.github.dockerjava.api.NotFoundException
* No such exec instance
*/
@Override
public InputStream exec() throws NotFoundException;
public static interface Exec extends DockerCmdSyncExec {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy