-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Queues simulator as Durable Object
- Loading branch information
Showing
13 changed files
with
732 additions
and
672 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
import { HttpError, MiniflareError } from "../../shared"; | ||
import { MiniflareError } from "../../shared"; | ||
|
||
export type QueuesErrorCode = | ||
| "ERR_V8_UNSUPPORTED" // V8 version too old | ||
| "ERR_MULTIPLE_CONSUMERS" // Attempted to set multiple consumers for a single queue; | ||
| "ERR_DEAD_LETTER_QUEUE_CYCLE"; // Attempted to set dead letter queue to self | ||
export class QueuesError extends MiniflareError<QueuesErrorCode> {} | ||
|
||
export class QueuesHTTPError extends HttpError {} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.