(key string, obj interface{})
| 37 | type ThreadSafeStore interface { |
| 38 | Add(key string, obj interface{}) |
| 39 | Update(key string, obj interface{}) |
| 40 | Delete(key string) |
| 41 | Get(key string) (item interface{}, exists bool) |
| 42 | List() []interface{} |
no outgoing calls