Class Swarm
java.lang.Object
com.github.cowwoc.docker.resource.Swarm
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
Returns the ID of the swarm.Returns the manager nodes in the swarm.Returns the secret value needed to join the swarm as a manager.getNodes()
Returns the nodes in the swarm.Returns the manager nodes with a READY status.Returns the worker nodes with a READY status.Returns the worker nodes in the swarm.Returns the secret value needed to join the swarm as a worker.void
removeNode
(Node node) Removes a node from the swarm.toString()
-
Method Details
-
getId
-
getManagers
Returns the manager nodes in the swarm.- Returns:
- the manager nodes in the swarm
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getWorkers
Returns the worker nodes in the swarm.- Returns:
- the worker nodes in the swarm
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getNodes
Returns the nodes in the swarm.- Returns:
- the nodes in the swarm
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getManagerToken
Returns the secret value needed to join the swarm as a manager.- Returns:
- the secret value needed to join the swarm as a manager
-
getWorkerToken
Returns the secret value needed to join the swarm as a worker.- Returns:
- the secret value needed to join the swarm as a worker
-
getReadyManagers
Returns the manager nodes with a READY status.- Returns:
- the manager nodes with a READY status
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getReadyWorkers
Returns the worker nodes with a READY status.- Returns:
- the worker nodes with a READY status
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
removeNode
Removes a node from the swarm.- Parameters:
node
- the node- Throws:
NullPointerException
- ifnode
is nullIllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
toString
-