guixiaowen opened a new issue, #1362:
URL: https://github.com/apache/auron/issues/1362

   In the current implementation, it’s not possible to add a description when 
creating the configuration.
   
   Eg:
   
   ConfigOption<Integer> batchSize = ConfigOptions
        .key("batch.size")
        .intType()
        .defaultValue(100); 
   
   
   The addDescription method allows you to provide a description for the 
current variable.
   
   Eg:
   
   
   ConfigOption<String> tempDirs = ConfigOptions
         .key("tmp.dir")
         .description("this is a example of string")
         .stringType()
         .defaultValue("/tmp");
   
   
   
   


-- 
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]

Reply via email to