forked from mwiede/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTopContainerCmd.java
More file actions
33 lines (23 loc) · 772 Bytes
/
Copy pathTopContainerCmd.java
File metadata and controls
33 lines (23 loc) · 772 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
32
33
package com.github.dockerjava.api.command;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.exception.NotFoundException;
/**
* List processes running inside a container
*/
public interface TopContainerCmd extends SyncDockerCmd<TopContainerResponse> {
@CheckForNull
String getContainerId();
@CheckForNull
String getPsArgs();
TopContainerCmd withContainerId(@Nonnull String containerId);
TopContainerCmd withPsArgs(String psArgs);
/**
* @throws NotFoundException
* No such container
*/
@Override
TopContainerResponse exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec<TopContainerCmd, TopContainerResponse> {
}
}