Uses of Interface
org.springframework.graphql.server.WebGraphQlInterceptor
Packages that use WebGraphQlInterceptor
Package
Description
Server transports handling GraphQL requests over the HTTP, WebSocket, and RSocket.
-
Uses of WebGraphQlInterceptor in org.springframework.graphql.server
Subinterfaces of WebGraphQlInterceptor in org.springframework.graphql.serverModifier and TypeInterfaceDescriptioninterfaceAn extension ofWebGraphQlInterceptorwith additional methods to handle the start and end of a WebSocket connection.Methods in org.springframework.graphql.server that return WebGraphQlInterceptorModifier and TypeMethodDescriptiondefault WebGraphQlInterceptorWebGraphQlInterceptor.andThen(WebGraphQlInterceptor nextInterceptor) Return a newWebGraphQlInterceptorthat invokes the current interceptor first and then the one that is passed in.Methods in org.springframework.graphql.server with parameters of type WebGraphQlInterceptorModifier and TypeMethodDescriptiondefault WebGraphQlInterceptorWebGraphQlInterceptor.andThen(WebGraphQlInterceptor nextInterceptor) Return a newWebGraphQlInterceptorthat invokes the current interceptor first and then the one that is passed in.WebGraphQlHandler.Builder.interceptor(WebGraphQlInterceptor... interceptors) Configure interceptors to be invoked before the targetGraphQlService.Method parameters in org.springframework.graphql.server with type arguments of type WebGraphQlInterceptorModifier and TypeMethodDescriptionWebGraphQlHandler.Builder.interceptors(List<WebGraphQlInterceptor> interceptors) Alternative toWebGraphQlHandler.Builder.interceptor(WebGraphQlInterceptor...)with a List.