salesforce / grpc-java-contrib

Useful extensions for the grpc-java library
BSD 3-Clause "New" or "Revised" License
220 stars 34 forks source link

Instance mode support #44

Closed rmichela closed 6 years ago

rmichela commented 6 years ago

gRPC binds to one instance of a service, effectively making each service a singleton. While good for performance, this can cause problems when less experienced developers accidentally leak state between service operations.

Add support for the following instance modes

rmichela commented 6 years ago

Implemented in #65