Support for HTTP Async client transport for Jersey on Scala (legacy master)#418
Merged
fehguy merged 1 commit intoswagger-api:masterfrom Feb 9, 2015
Merged
Conversation
88f1f46 to
0976a1c
Compare
Contributor
|
this is great--we're mostly working in the develop_2.0 branch and that would be the appropriate place to merge this. Can you send the PR there? |
When generating Scala client, the ApiInvoker is a class with overridable options, avoiding the need of public vars to be manually modified. Additionally it is possible to plug the AsyncHttp protocol for Jersey in order to achieve Netty support and maximum scalability. NOTE: Support for Scala 2.10.0-3 removed as largely obsolete
0976a1c to
2386e39
Compare
Contributor
Author
|
@fehguy thanks for the feedback: I would keep this PR anyway for a fix on the release we are currently using and additionally I'll open a new one on develop_2.0 |
fehguy
added a commit
that referenced
this pull request
Feb 9, 2015
Support for HTTP Async client transport for Jersey on Scala (legacy master)
This file contains hidden or 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
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.
When generating Scala client, the ApiInvoker is a class with
overridable options, avoiding the need of public vars to be
manually modified.
Additionally it is possible to plug the AsyncHttp protocol
for Jersey in order to achieve Netty support and maximum scalability.