Store an arbitrary key/value pair, overwrites any existing value. :param bytes key: lookup key :param bytes value: value :param bool is_result: indicate if we are storing a (volatile) task result versus metadata like a task revocation key or lock.
(self, key, value, is_result=False)
| 153 | raise NotImplementedError |
| 154 | |
| 155 | def put_data(self, key, value, is_result=False): |
| 156 | """ |
| 157 | Store an arbitrary key/value pair, overwrites any existing value. |
| 158 | |
| 159 | :param bytes key: lookup key |
| 160 | :param bytes value: value |
| 161 | :param bool is_result: indicate if we are storing a (volatile) task |
| 162 | result versus metadata like a task revocation key or lock. |
| 163 | :return: No return value. |
| 164 | """ |
| 165 | raise NotImplementedError |
| 166 | |
| 167 | def peek_data(self, key): |
| 168 | """ |
no outgoing calls
no test coverage detected