-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rework low level message stream retries, add debugging (#1713)
* feat: rework how subscriber streams are retried and generally managed * feat: add debug logging from the low level message stream for reconnects * chore: rename retryBackoff * chore: update retry max backoff * feat: clarify 'debug' channel a bit, add explicit debug message class * chore: push stream retries to full individual retry
- Loading branch information
Showing
13 changed files
with
363 additions
and
214 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/** | ||
* Represents a debug message the user might want to print out for logging | ||
* while debugging or whatnot. These will always come by way of the 'error' | ||
* channel on streams or other event emitters. It's completely fine to | ||
* ignore them, as some will just be verbose logging info, but they may | ||
* help figure out what's going wrong. Support may also ask you to catch | ||
* these channels, which you can do like so: | ||
* | ||
* ``` | ||
* subscription.on('debug', msg => console.log(msg.message)); | ||
* ``` | ||
* | ||
* These values are _not_ guaranteed to remain stable, even within a major | ||
* version, so don't depend on them for your program logic. Debug outputs | ||
* may be added or removed at any time, without warning. | ||
*/ | ||
export class DebugMessage { | ||
constructor(public message: string, public error?: Error) {} | ||
} |
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
Oops, something went wrong.