dmvolod commented on a change in pull request #4508:
URL: https://github.com/apache/camel/pull/4508#discussion_r511732925
##########
File path:
components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConfiguration.java
##########
@@ -353,15 +356,33 @@ public void setFlowControlWindow(int flowControlWindow) {
this.flowControlWindow = flowControlWindow;
}
+ public int getMaxMessageSize() {
+ return maxMessageSize;
+ }
+
/**
* The maximum message size allowed to be received/sent (MiB)
*/
public void setMaxMessageSize(int maxMessageSize) {
this.maxMessageSize = maxMessageSize;
}
- public int getMaxMessageSize() {
- return maxMessageSize;
+ /**
+ * Lets the camel route to take control over stream observer. If this
value is set to true, then the stream
Review comment:
Camel must be in CamelCase as it's project name but also a bit redundant
:smile:
Also name of the property must be documented or separate micro example can
be provided.
Please don't forget about constant described below. Info about default false
value as also redundant as it always false by default.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]