Add message and return assigned key.
(self, message)
| 47 | self.close() |
| 48 | |
| 49 | def add(self, message): |
| 50 | """Add message and return assigned key.""" |
| 51 | raise NotImplementedError('Method must be implemented by subclass') |
| 52 | |
| 53 | def remove(self, key): |
| 54 | """Remove the keyed message; raise KeyError if it doesn't exist.""" |
no outgoing calls