-
Notifications
You must be signed in to change notification settings - Fork 12
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
feat: Websocket connection uptake #2178
Conversation
…ections # Conflicts: # packages/at_secondary_server/lib/src/server/at_secondary_impl.dart # packages/at_secondary_server/lib/src/server/bootstrapper.dart
…um version to 3.0.0, update lots of various constructor signatures to use `super.`
…hod, createWebSocketConnection, to InboundConnectionManager; modify global exception handler so it can deal with WebSockets as well as Sockets for the InboundConnectionLimitException handling
…ections # Conflicts: # packages/at_secondary_server/lib/src/verb/handler/abstract_update_verb_handler.dart
…into feat/web-socket-connections
chore: removed a TODO
@purnimavenkatasubbu @VJag I've pushed some changes with some TODOs for you to get all of these changes covered by end to end tests. Once that's all done you could consider doing the same type of thing for the functional tests and running functional tests four times (dart stable socket, dart stable websocket, dart latest socket, dart latest websocket) instead of the current two (dart stable, dart latest) |
…ion type `websocket`
…into feat/web-socket-connections
- What I did
Implemented WebSocket support for inbound connections in the secondary server. Added InboundWebSocketConnection to handle WebSocket-based client connections.
- How I did it
- How to verify it
All tests pass