* Delete a task by its unique key * * @returns true if found and deleted, false otherwise
(key: string)
| 254 | * @returns true if found and deleted, false otherwise |
| 255 | */ |
| 256 | async deleteByKey(key: string): Promise<boolean> { |
| 257 | return OpWrappers.tasks.delTaskByKey(this.pluginId, this.name, key); |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Delete all tasks within this bucket |
no outgoing calls
no test coverage detected