-
Notifications
You must be signed in to change notification settings - Fork 10
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
Jay/asyncio asgi interface #121
Merged
Merged
Conversation
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
… now I've started to refactor the base interface code and I realized I should have a snapshot commit before I go crazy and rip a whole bunch of stuff out and consolidate some stuff. I think Router and Call can actually be part of the interface's BaseApplication and a lot of the methods can probably rely on datatypes functionality now
… requests and I've merged Call functionality into Application but I haven't removed it yet. Next I'm going to simplify Router and maybe merge that into application also
…ogic and I want to make sure I can easily reset if needed
…tion so I can remove the Router now
…n up all the code and organize it
…ig.py. Moves the asgi server code into the test. ASGI is working for http and websocket. I still need to refactor all the wsgi code to make it work and also refactor the Request to no longer expect a WSGI environ object
… BackendDecorator since it was kind of strange to have limit and auth decorators use different ways to override them. I know they were different because they were originally developed in different projects and at different times before they were moved into endpoints, but now it was time to normalize them and make them consistent
…nused imports and cleanedup a lot of the dead code. Temprorary removes extras since I don't need those right now. I'll bring them back when I need them and can do the small refactoring to make them work with all the async stuff.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Full ASGI and async support.