Hi all,
Is it possible to run multiple services (or servicers) on a single process?
It is of course possible to write a single service and add all the methods there. However I have about 50 methods (and would have more in the future) and it'd be nice to separate them into different proto files and implementations. Same way it is done in Java with `addService`. Very much like packages in Java / modules in python.
server = NettyServerBuilder.forPort(port).sslContext(sslContext)
.addService(GreeterGrpc.bindService(new GreeterImpl())).build()
.start();
Thanks in advance,
Daniel