We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the interceptor behavior is defined under the GPRC namespace:
GPRC
GRPC.ClientInterceptor GRPC.ServerInterceptor
It seems that it's not consistent with adapter behavior that uses GRPC.Client.Adapter or GRPC.Server.Adapter.
GRPC.Client.Adapter
GRPC.Server.Adapter
So I would like purpose to move interceptor behavior to under the client/server side. So it would become:
GRPC.Client.Interceptor GRPC.Server.Interceptor
And the implementation of the interceptor, such as logger, would move into grpc/[client|server]/interceptors as adapters do.
grpc/[client|server]/interceptors
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, the interceptor behavior is defined under the
GPRC
namespace:It seems that it's not consistent with adapter behavior that uses
GRPC.Client.Adapter
orGRPC.Server.Adapter
.So I would like purpose to move interceptor behavior to under the client/server side. So it would become:
And the implementation of the interceptor, such as logger, would move into
grpc/[client|server]/interceptors
as adapters do.The text was updated successfully, but these errors were encountered: