de.gesellix.docker.client.tasks.ManageTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-client Show documentation
Show all versions of docker-client Show documentation
A Docker client for the JVM written in Groovy
The newest version!
package de.gesellix.docker.client.tasks;
import de.gesellix.docker.client.EngineResponseContent;
import de.gesellix.docker.remote.api.Task;
import java.util.List;
import java.util.Map;
public interface ManageTask {
/**
* @see #tasks(String)
* @deprecated use {@link #tasks(String)}
*/
@Deprecated
EngineResponseContent> tasks(Map query);
EngineResponseContent> tasks();
EngineResponseContent> tasks(String filters);
EngineResponseContent inspectTask(String name);
}