Package | Description |
---|---|
org.springframework.graphql.server |
Server transports handling GraphQL requests over the HTTP, WebSocket, and RSocket.
|
Modifier and Type | Method and Description |
---|---|
default RSocketGraphQlInterceptor |
RSocketGraphQlInterceptor.andThen(RSocketGraphQlInterceptor nextInterceptor)
Return a new
RSocketGraphQlInterceptor that invokes the current
interceptor first and then the one that is passed in. |
Modifier and Type | Method and Description |
---|---|
default RSocketGraphQlInterceptor |
RSocketGraphQlInterceptor.andThen(RSocketGraphQlInterceptor nextInterceptor)
Return a new
RSocketGraphQlInterceptor that invokes the current
interceptor first and then the one that is passed in. |
Constructor and Description |
---|
GraphQlRSocketHandler(ExecutionGraphQlService graphQlService,
List<RSocketGraphQlInterceptor> interceptors,
Encoder<?> jsonEncoder)
Create a new instance that handles requests through a chain of interceptors
followed by the given
ExecutionGraphQlService . |