(id: string)
| 116 | } |
| 117 | |
| 118 | async remove(id: string): Promise<void> { |
| 119 | return withSpan(`outbox.remove`, { 'transaction.id': id }, async () => { |
| 120 | const key = this.getStorageKey(id) |
| 121 | await this.storage.delete(key) |
| 122 | }) |
| 123 | } |
| 124 | |
| 125 | async removeMany(ids: Array<string>): Promise<void> { |
| 126 | return withSpan(`outbox.removeMany`, { count: ids.length }, async () => { |
no test coverage detected