-
Notifications
You must be signed in to change notification settings - Fork 31
feat: adds polling synchronizer support #816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 18 commits
285fc9f
3e9953b
80582bc
eeaa3d1
6d0a08b
ea9845d
33c873e
fa634f5
a3d2489
d241af3
bb47dde
5e6600e
6904c99
a0f5398
9b9abf3
2e3a4fd
2a0fdd2
893f09f
eebf115
87bcec4
80f8d67
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,11 @@ | ||
| streaming/validation/drop and reconnect if stream event has malformed JSON | ||
| streaming/validation/drop and reconnect if stream event has well-formed JSON not matching schema | ||
|
|
||
| streaming/fdv2/reconnection state management/initializes from polling initializer | ||
| streaming/fdv2/reconnection state management/initializes from 2 polling initializers | ||
|
|
||
| streaming/fdv2/reconnection state management/saves previously known state | ||
| streaming/fdv2/reconnection state management/replaces previously known state | ||
| streaming/fdv2/reconnection state management/updates previously known state | ||
| streaming/fdv2/ignores model version | ||
| streaming/fdv2/can discard partial events on errors | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These suppressions are the fdv2 cases that aren't passing at moment. The state and model ones will be addressed in a future story. The |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| import { Payload, PayloadListener, PayloadReader, Update } from './payloadReader'; | ||
| import { | ||
| EventsSummary, | ||
| Payload, | ||
| PayloadListener, | ||
| PayloadProcessor, | ||
| Update, | ||
| } from './payloadProcessor'; | ||
| import { PayloadStreamReader } from './payloadStreamReader'; | ||
|
|
||
| export { Payload, PayloadListener, PayloadReader, Update }; | ||
| export { EventsSummary, Payload, PayloadListener, PayloadProcessor, PayloadStreamReader, Update }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reviewers: Hooks up configuration for contract tests.