Interface GrpcServiceFilterFactory<Filter extends Service,Service>

Type Parameters:
Filter - Type for service filter
Service - Type for service
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @Deprecated public interface GrpcServiceFilterFactory<Filter extends Service,Service>
Deprecated.
gRPC Service Filters will be removed in future release of ServiceTalk. We encourage the use of StreamingHttpServiceFilterFactory and if the access to the decoded payload is necessary, then performing that logic can be done in the particular service implementation. Please use HttpServerBuilder.appendServiceFilter(StreamingHttpServiceFilterFactory) upon the builder obtained using GrpcServerBuilder.initializeHttp(GrpcServerBuilder.HttpInitializer) if HTTP filters are acceptable in your use case.
A factory to create gRPC service filters.