com.github.dockerjava.netty.exec.AbstrSyncDockerCmdExec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.netty.exec;
import com.github.dockerjava.api.command.DockerCmd;
import com.github.dockerjava.api.command.DockerCmdSyncExec;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.netty.WebTarget;
public abstract class AbstrSyncDockerCmdExec, RES_T> extends AbstrDockerCmdExec
implements DockerCmdSyncExec {
public AbstrSyncDockerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
public RES_T exec(CMD_T command) {
// this hack works because of ResponseStatusExceptionFilter
try (CMD_T cmd = command) {
try {
return execute(cmd);
} catch (RuntimeException e) {
if (e.getCause() instanceof DockerException) {
throw (DockerException) e.getCause();
} else {
throw e;
}
}
}
}
protected abstract RES_T execute(CMD_T command);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy