forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRestartContainerCmd.java
More file actions
51 lines (38 loc) · 1.26 KB
/
Copy pathRestartContainerCmd.java
File metadata and controls
51 lines (38 loc) · 1.26 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.github.dockerjava.api.command;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.exception.NotFoundException;
/**
* Restart a running container.
*
* @param signal - Signal to send to the container as an integer or string (e.g. SIGINT).
* @param timeout - Timeout in seconds before killing the container. Defaults to 10 seconds.
*/
public interface RestartContainerCmd extends SyncDockerCmd<Void> {
@CheckForNull
String getContainerId();
@CheckForNull
Integer getTimeout();
/**
* @since {@link com.github.dockerjava.core.RemoteApiVersion#VERSION_1_42}
*/
@CheckForNull
String getSignal();
RestartContainerCmd withContainerId(@Nonnull String containerId);
/**
* @deprecated wrong name, use {@link #withTimeout(Integer)}
*/
@Deprecated
default RestartContainerCmd withtTimeout(Integer timeout) {
return withTimeout(timeout);
}
RestartContainerCmd withTimeout(Integer timeout);
RestartContainerCmd withSignal(String signal);
/**
* @throws NotFoundException No such container
*/
@Override
Void exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec<RestartContainerCmd, Void> {
}
}