Chenjp
Chenjp
> > > Let's add a reference counter to track how many ApplicationModels are using it. We'll increase the count when an ApplicationModel starts and decrease it when one is...
@AlbumenJ Would you please help to review PR #14091 and share your comments.
Overloading-method may violate REST style best practise, I do think it's not a good idea for rest-protocol. A well-designed Rest service ("URL" representatively) should be semantically accurate, without any misunderstanding....
@AlbumenJ request payload will be determined by interface argument name, is it a good idea?
> > @AlbumenJ request payload will be determined by interface argument name, is it a good idea? > > This is as expected Assume another composite parameter exist: ```java public...
@AlbumenJ I have another question, does triple protocol allow method overload currently? ```java public interface GreetingsService { String sayHi3(String name, String message, CompositeBean source); String sayHi3(String name, String message, SourceBean...
> > @AlbumenJ I have another question, does triple protocol allow method overload currently? > > ```java > > public interface GreetingsService { > > String sayHi3(String name, String message,...
> The change itself in the refactoring patch is right. The "who creates, who destroys" design introduced is indeed impressive, but I think it's not so demanded in this scenario...
> > > The change itself in the refactoring patch is right. The "who creates, who destroys" design introduced is indeed impressive, but I think it's not so demanded in...
When stream exhaust occur, Server send GOAWAY frame to prevent client-endpoint to open a new stream with higher stream id. GOAWAY is a part of http/2 error-handling. We may handle...