Hi,
Currently, when the ServerBuilder::BuildAndStart is called, it unilaterally goes ahead and binds all the plugins. In server_builder.cc,
for (auto plugin = plugins_.begin(); plugin != plugins_.end(); plugin++) {
(*plugin)->InitServer(initializer);
}
et al.
Is it possible to add an option to control it?
The use case I have is that I have multiple grpc server in my application and while I'd like to enable reflection support for grpc_cli usage, I'd like to limit the usage to certain instances. If there is another way to achieve this, please let me know.
Thanks.