Class ApolloWSHandler
- java.lang.Object
-
- io.vertx.reactivex.ext.web.handler.graphql.ApolloWSHandler
-
- All Implemented Interfaces:
Handler<RoutingContext>,ProtocolUpgradeHandler
public class ApolloWSHandler extends Object implements ProtocolUpgradeHandler, Handler<RoutingContext>
A handler for GraphQL requests sent over Apollo'ssubscriptions-transport-wstransport. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ApolloWSHandler>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ApolloWSHandler(ApolloWSHandler delegate)ApolloWSHandler(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ApolloWSHandlerbeforeExecute(Handler<ExecutionInputBuilderWithContext<ApolloWSMessage>> config)Set a callback to invoke before executing a GraphQL query.ApolloWSHandlerconnectionHandler(Handler<ServerWebSocket> connectionHandler)Customize the connection .ApolloWSHandlerconnectionInitHandler(Handler<ApolloWSConnectionInitEvent> connectionInitHandler)Customize the connection init .static ApolloWSHandlercreate(graphql.GraphQL graphQL)Create a newApolloWSHandlerthat will use the providedgraphQLobject to execute requests.static ApolloWSHandlercreate(graphql.GraphQL graphQL, ApolloWSOptions options)Create a newApolloWSHandlerthat will use the providedgraphQLobject to execute requests.ApolloWSHandlerdataLoaderRegistry(Function<ApolloWSMessage,org.dataloader.DataLoaderRegistry> factory)Deprecated.ApolloWSHandlerendHandler(Handler<ServerWebSocket> endHandler)Customize the end .booleanequals(Object o)ApolloWSHandlergetDelegate()static ApolloWSMessagegetMessage(graphql.GraphQLContext graphQlContext)Retrieves theApolloWSMessagefrom the .voidhandle(RoutingContext event)Something has happened, so handle it.inthashCode()ApolloWSHandlerlocale(Function<ApolloWSMessage,Locale> factory)Deprecated.ApolloWSHandlermessageHandler(Handler<ApolloWSMessage> messageHandler)Customize the message .static ApolloWSHandlernewInstance(ApolloWSHandler arg)ApolloWSHandlerqueryContext(Function<ApolloWSMessage,Object> factory)Deprecated.StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ApolloWSHandler> __TYPE_ARG
-
-
Constructor Detail
-
ApolloWSHandler
public ApolloWSHandler(ApolloWSHandler delegate)
-
ApolloWSHandler
public ApolloWSHandler(Object delegate)
-
-
Method Detail
-
getDelegate
public ApolloWSHandler getDelegate()
- Specified by:
getDelegatein interfaceProtocolUpgradeHandler
-
handle
public void handle(RoutingContext event)
Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Specified by:
handlein interfaceProtocolUpgradeHandler- Parameters:
event- the event to handle
-
connectionHandler
public ApolloWSHandler connectionHandler(Handler<ServerWebSocket> connectionHandler)
Customize the connection . This handler will be called at the beginning of each websocket connection.- Parameters:
connectionHandler-- Returns:
- a reference to this, so the API can be used fluently
-
connectionInitHandler
public ApolloWSHandler connectionInitHandler(Handler<ApolloWSConnectionInitEvent> connectionInitHandler)
Customize the connection init . This handler will be called when the message is received.- Parameters:
connectionInitHandler-- Returns:
- a reference to this, so the API can be used fluently
-
messageHandler
public ApolloWSHandler messageHandler(Handler<ApolloWSMessage> messageHandler)
Customize the message . This handler will be called for eachApolloWSMessagereceived.- Parameters:
messageHandler-- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
public ApolloWSHandler endHandler(Handler<ServerWebSocket> endHandler)
Customize the end . This handler will be called at the end of each websocket connection.- Parameters:
endHandler-- Returns:
- a reference to this, so the API can be used fluently
-
queryContext
@Deprecated public ApolloWSHandler queryContext(Function<ApolloWSMessage,Object> factory)
Deprecated.Customize the query context object. The providedfactorymethod will be invoked for each incoming GraphQL request.- Parameters:
factory-- Returns:
- a reference to this, so the API can be used fluently
-
beforeExecute
public ApolloWSHandler beforeExecute(Handler<ExecutionInputBuilderWithContext<ApolloWSMessage>> config)
Set a callback to invoke before executing a GraphQL query.- Parameters:
config- the callback to invoke- Returns:
- a reference to this, so the API can be used fluently
-
create
public static ApolloWSHandler create(graphql.GraphQL graphQL)
Create a newApolloWSHandlerthat will use the providedgraphQLobject to execute requests.The handler will be configured with the default
ApolloWSOptions.- Parameters:
graphQL-- Returns:
-
create
public static ApolloWSHandler create(graphql.GraphQL graphQL, ApolloWSOptions options)
Create a newApolloWSHandlerthat will use the providedgraphQLobject to execute requests.The handler will be configured with the given
options.- Parameters:
graphQL-options- options for configuring theApolloWSOptions- Returns:
-
getMessage
public static ApolloWSMessage getMessage(graphql.GraphQLContext graphQlContext)
Retrieves theApolloWSMessagefrom the .- Parameters:
graphQlContext- the GraphQL context object- Returns:
- the
ApolloWSMessage
-
dataLoaderRegistry
@Deprecated public ApolloWSHandler dataLoaderRegistry(Function<ApolloWSMessage,org.dataloader.DataLoaderRegistry> factory)
Deprecated.Customize the . The providedfactorymethod will be invoked for each incoming GraphQL request.- Parameters:
factory-- Returns:
- a reference to this, so the API can be used fluently
-
locale
@Deprecated public ApolloWSHandler locale(Function<ApolloWSMessage,Locale> factory)
Deprecated.Customize the passed to the GraphQL execution engine. The providedfactorymethod will be invoked for each incoming GraphQL request.- Parameters:
factory-- Returns:
- a reference to this, so the API can be used fluently
-
newInstance
public static ApolloWSHandler newInstance(ApolloWSHandler arg)
-
-