forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportContainerCmd.java
More file actions
31 lines (23 loc) · 830 Bytes
/
Copy pathExportContainerCmd.java
File metadata and controls
31 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.github.dockerjava.api.command;
import java.io.InputStream;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.exception.NotFoundException;
/**
* Export the contents of a container as a tar archive.
*/
public interface ExportContainerCmd extends SyncDockerCmd<InputStream> {
@CheckForNull
String getContainerId();
ExportContainerCmd withContainerId(@Nonnull String containerId);
/**
* Its the responsibility of the caller to consume and/or close the {@link InputStream} to prevent connection leaks.
*
* @throws NotFoundException
* No such container
*/
@Override
InputStream exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec<ExportContainerCmd, InputStream> {
}
}