-
Notifications
You must be signed in to change notification settings - Fork 26.4k
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
unification HTTP server side #12815
unification HTTP server side #12815
Conversation
...ting-http12/src/main/java/org/apache/dubbo/remoting/http12/exception/HttpRequestTimeout.java
Outdated
Show resolved
Hide resolved
...ing-http12/src/main/java/org/apache/dubbo/remoting/http12/h1/Http1ServerChannelObserver.java
Show resolved
Hide resolved
...ing/dubbo-remoting-http12/src/main/java/org/apache/dubbo/remoting/http12/h2/Http2Header.java
Show resolved
Hide resolved
...bo-remoting-http12/src/main/java/org/apache/dubbo/remoting/http12/h2/Http2MetadataFrame.java
Show resolved
Hide resolved
import org.apache.dubbo.rpc.model.FrameworkModel; | ||
|
||
@SPI(scope = ExtensionScope.FRAMEWORK) | ||
public interface Http2ServerTransportListenerFactory { |
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.
Can h1 and h2 merge the processing of content type?
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.
ok, i will redesign here
@SPI(scope = ExtensionScope.FRAMEWORK) | ||
public interface HttpMessageCodec { | ||
|
||
void encode(OutputStream outputStream, Object data) throws EncodeException; |
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.
Should this method default?
What is the purpose of the change
abstract HTTP 1/2 remoting (server)
Brief changelog
Verifying this change
Checklist