diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2017-11-09 13:51:20 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2017-11-18 12:58:48 -0500 |
commit | 763e3726493c122d9722e0e294634ae8d78c426b (patch) | |
tree | a2b34450ab0dfe2131786315f393a1f7ca05ffdd /libpod/in_memory_state.go | |
parent | cb56716fc4bb632db84fab372fff8f5a9007ed3f (diff) | |
download | podman-763e3726493c122d9722e0e294634ae8d78c426b.tar.gz podman-763e3726493c122d9722e0e294634ae8d78c426b.tar.bz2 podman-763e3726493c122d9722e0e294634ae8d78c426b.zip |
Wire SQL backed state into rest of libpod
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'libpod/in_memory_state.go')
-rw-r--r-- | libpod/in_memory_state.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libpod/in_memory_state.go b/libpod/in_memory_state.go index 87caac808..5d03e62e6 100644 --- a/libpod/in_memory_state.go +++ b/libpod/in_memory_state.go @@ -153,6 +153,21 @@ func (s *InMemoryState) RemoveContainer(ctr *Container) error { return nil } +// UpdateContainer updates a container's state +// As all state is in-memory, no update will be required +// As such this is a no-op +func (s *InMemoryState) UpdateContainer(ctr *Container) error { + return nil +} + +// SaveContainer saves a container's state +// As all state is in-memory, any changes are always reflected as soon as they +// are made +// As such this is a no-op +func (s *InMemoryState) SaveContainer(ctr *Container) error { + return nil +} + // AllContainers retrieves all containers from the state func (s *InMemoryState) AllContainers() ([]*Container, error) { ctrs := make([]*Container, 0, len(s.containers)) |