Uses of Interface
org.springframework.graphql.server.WebGraphQlHandler
Packages that use WebGraphQlHandler
Package
Description
Server transports handling GraphQL requests over the HTTP, WebSocket, and RSocket.
HTTP and WebSocket handlers for use in a Spring WebFlux application.
HTTP and WebSocket handlers for use in a Spring WebMvc application.
GraphQL client testing support.
-
Uses of WebGraphQlHandler in org.springframework.graphql.server
Methods in org.springframework.graphql.server that return WebGraphQlHandlerModifier and TypeMethodDescriptionWebGraphQlHandler.Builder.build()Build theWebGraphQlHandlerinstance. -
Uses of WebGraphQlHandler in org.springframework.graphql.server.webflux
Methods in org.springframework.graphql.server.webflux with parameters of type WebGraphQlHandlerModifier and TypeMethodDescriptionstatic GraphQlHttpHandler.BuilderGraphQlHttpHandler.builder(WebGraphQlHandler graphQlHandler) Return a builder to create aGraphQlHttpHandler, e.g.static GraphQlSseHandler.BuilderGraphQlSseHandler.builder(WebGraphQlHandler graphQlHandler) Return a builder to create aGraphQlSseHandler, e.g.GraphQlWebSocketHandler.builder(WebGraphQlHandler graphQlHandler, CodecConfigurer codecConfigurer, Duration connectionInitTimeout) Create a builder for aGraphQlWebSocketHandler.Constructors in org.springframework.graphql.server.webflux with parameters of type WebGraphQlHandlerModifierConstructorDescriptionprotectedAbstractGraphQlHttpHandler(WebGraphQlHandler graphQlHandler, @Nullable CodecConfigurer codecConfigurer) GraphQlHttpHandler(WebGraphQlHandler graphQlHandler) Deprecated, for removal: This API element is subject to removal in a future version.GraphQlHttpHandler(WebGraphQlHandler graphQlHandler, CodecConfigurer codecConfigurer) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlHttpHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler, @Nullable Duration timeout) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler, @Nullable Duration timeout, @Nullable Duration keepAliveDuration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, CodecConfigurer codecConfigurer, Duration connectionInitTimeout) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, CodecConfigurer, Duration)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, CodecConfigurer codecConfigurer, Duration connectionInitTimeout, @Nullable Duration keepAliveDuration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, CodecConfigurer, Duration)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, CodecConfigurer codecConfigurer, Duration connectionInitTimeout, @Nullable Duration keepAliveDuration, @Nullable CorsConfiguration corsConfiguration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, CodecConfigurer, Duration) -
Uses of WebGraphQlHandler in org.springframework.graphql.server.webmvc
Methods in org.springframework.graphql.server.webmvc with parameters of type WebGraphQlHandlerModifier and TypeMethodDescriptionstatic GraphQlHttpHandler.BuilderGraphQlHttpHandler.builder(WebGraphQlHandler graphQlHandler) Return a builder to create aGraphQlHttpHandler, e.g.static GraphQlSseHandler.BuilderGraphQlSseHandler.builder(WebGraphQlHandler graphQlHandler) Return a builder to create aGraphQlSseHandler, e.g.GraphQlWebSocketHandler.builder(WebGraphQlHandler graphQlHandler, HttpMessageConverter<Object> converter, Duration connectionInitTimeout) Create a builder for aGraphQlWebSocketHandler.Constructors in org.springframework.graphql.server.webmvc with parameters of type WebGraphQlHandlerModifierConstructorDescriptionprotectedAbstractGraphQlHttpHandler(WebGraphQlHandler graphQlHandler, @Nullable HttpMessageConverter<?> messageConverter) GraphQlHttpHandler(WebGraphQlHandler graphQlHandler) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlHttpHandler.builder(WebGraphQlHandler)GraphQlHttpHandler(WebGraphQlHandler graphQlHandler, @Nullable HttpMessageConverter<?> converter) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlHttpHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler, @Nullable Duration timeout) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlSseHandler(WebGraphQlHandler graphQlHandler, @Nullable Duration timeout, @Nullable Duration keepAliveDuration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlSseHandler.builder(WebGraphQlHandler)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, HttpMessageConverter<Object> converter, Duration connectionInitTimeout) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, HttpMessageConverter, Duration)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, HttpMessageConverter<Object> converter, Duration connectionInitTimeout, @Nullable Duration keepAliveDuration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, HttpMessageConverter, Duration)GraphQlWebSocketHandler(WebGraphQlHandler graphQlHandler, HttpMessageConverter<Object> converter, Duration connectionInitTimeout, @Nullable Duration keepAliveDuration, @Nullable CorsConfiguration corsConfiguration) Deprecated, for removal: This API element is subject to removal in a future version.since 2.1.0 in favor ofGraphQlWebSocketHandler.builder(WebGraphQlHandler, HttpMessageConverter, Duration) -
Uses of WebGraphQlHandler in org.springframework.graphql.test.tester
Methods in org.springframework.graphql.test.tester with parameters of type WebGraphQlHandlerModifier and TypeMethodDescriptionstatic WebGraphQlTester.Builder<?> WebGraphQlTester.builder(WebGraphQlHandler graphQlHandler) Return a builder for aWebGraphQlTester.static WebGraphQlTesterWebGraphQlTester.create(WebGraphQlHandler graphQlHandler) Create aWebGraphQlTesterinstance.
GraphQlHttpHandler.builder(WebGraphQlHandler)