jiazhai commented on issue #5662: [doc] API documentation doesn't describe behaviour of async callbacks URL: https://github.com/apache/pulsar/issues/5662#issuecomment-555833589 @candlerb This is related to the thread that user setting in client config? ``` struct ClientConfigurationImpl { AuthenticationPtr authenticationPtr; int ioThreads; < === int operationTimeoutSeconds; int messageListenerThreads; < === int concurrentLookupRequest; std::string logConfFilePath; bool useTls; std::string tlsTrustCertsFilePath; bool tlsAllowInsecureConnection; unsigned int statsIntervalInSeconds; LoggerFactoryPtr loggerFactory; bool validateHostName; ClientConfigurationImpl() : authenticationPtr(AuthFactory::Disabled()), ioThreads(1), operationTimeoutSeconds(30), messageListenerThreads(1), concurrentLookupRequest(50000), logConfFilePath(), useTls(false), tlsAllowInsecureConnection(false), statsIntervalInSeconds(600), // 10 minutes loggerFactory(), validateHostName(false) {} }; ```
---------------------------------------------------------------- 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] With regards, Apache Git Services
