summaryrefslogtreecommitdiff
path: root/libpod/state.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-12-13 22:02:15 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-01-17 15:26:43 +0000
commit13f004aec5c70ca5be9f6c134566abd1e62ea660 (patch)
tree34556c8fcc5ab52a0fac8baf09033240f19645f7 /libpod/state.go
parent1735598d12dfc6965c1881d537c6c0051a3637dd (diff)
downloadpodman-13f004aec5c70ca5be9f6c134566abd1e62ea660.tar.gz
podman-13f004aec5c70ca5be9f6c134566abd1e62ea660.tar.bz2
podman-13f004aec5c70ca5be9f6c134566abd1e62ea660.zip
Add ability to retrieve a pod's container from the state
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #229 Approved by: rhatdan
Diffstat (limited to 'libpod/state.go')
-rw-r--r--libpod/state.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/state.go b/libpod/state.go
index 63865a541..95012e586 100644
--- a/libpod/state.go
+++ b/libpod/state.go
@@ -44,6 +44,8 @@ type State interface {
LookupPod(idOrName string) (*Pod, error)
// Checks if a pod with the given ID is present in the state
HasPod(id string) (bool, error)
+ // Get all the containers in a pod. Accepts full ID of pod.
+ PodContainers(id string) ([]*Container, error)
// Adds pod to state
// Only empty pods can be added to the state
AddPod(pod *Pod) error