Adds a ServerInterceptor that is run for all services on the server. Interceptors added through this method always run before per-service interceptors added through ServerInterceptors. Interceptors run in the reverse order in which they are added, just as with consecutive calls to
(ServerInterceptor interceptor)
| 142 | * @since 1.5.0 |
| 143 | */ |
| 144 | public T intercept(ServerInterceptor interceptor) { |
| 145 | throw new UnsupportedOperationException(); |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Adds a {@link ServerTransportFilter}. The order of filters being added is the order they will |
no outgoing calls