aaron-ai commented on code in PR #661:
URL: https://github.com/apache/rocketmq-clients/pull/661#discussion_r1446924234
##########
java/client-apis/src/main/java/org/apache/rocketmq/client/apis/ClientConfigurationBuilder.java:
##########
@@ -82,6 +83,16 @@ public ClientConfigurationBuilder enableSsl(boolean
sslEnabled) {
return this;
}
+ /**
+ * Configure namespace for client
+ * @param namespace namespace
+ * @return The {@link ClientConfigurationBuilder} instance, to allow for
method chaining.
+ */
+ public ClientConfigurationBuilder setNamespace(String namespace) {
+ this.namespace = namespace;
Review Comment:
Add checkNotNull here?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]