Class ApolloWSHandler
- java.lang.Object
-
- io.vertx.reactivex.ext.web.handler.graphql.ApolloWSHandler
-
- All Implemented Interfaces:
Handler<RoutingContext>,RxDelegate,ProtocolUpgradeHandler
@Deprecated public class ApolloWSHandler extends Object implements RxDelegate, ProtocolUpgradeHandler, Handler<RoutingContext>
Deprecated.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_ARGDeprecated.
-
Constructor Summary
Constructors Constructor Description ApolloWSHandler(ApolloWSHandler delegate)Deprecated.ApolloWSHandler(Object delegate)Deprecated.
-
Method Summary
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ApolloWSHandler> __TYPE_ARG
Deprecated.
-
-
Constructor Detail
-
ApolloWSHandler
public ApolloWSHandler(ApolloWSHandler delegate)
Deprecated.
-
ApolloWSHandler
public ApolloWSHandler(Object delegate)
Deprecated.
-
-
Method Detail
-
getDelegate
public ApolloWSHandler getDelegate()
Deprecated.- Specified by:
getDelegatein interfaceProtocolUpgradeHandler- Specified by:
getDelegatein interfaceRxDelegate
-
handle
@Deprecated public void handle(RoutingContext event)
Deprecated.Something has happened, so handle it.- Specified by:
handlein interfaceHandler<RoutingContext>- Specified by:
handlein interfaceProtocolUpgradeHandler- Parameters:
event- the event to handle
-
connectionHandler
@Deprecated public ApolloWSHandler connectionHandler(Handler<ServerWebSocket> connectionHandler)
Deprecated.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
@Deprecated public ApolloWSHandler connectionInitHandler(Handler<ApolloWSConnectionInitEvent> connectionInitHandler)
Deprecated.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
@Deprecated public ApolloWSHandler messageHandler(Handler<ApolloWSMessage> messageHandler)
Deprecated.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
@Deprecated public ApolloWSHandler endHandler(Handler<ServerWebSocket> endHandler)
Deprecated.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
@Deprecated public ApolloWSHandler beforeExecute(Handler<ExecutionInputBuilderWithContext<ApolloWSMessage>> config)
Deprecated.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
@Deprecated public static ApolloWSHandler create(graphql.GraphQL graphQL)
Deprecated.Create a newApolloWSHandlerthat will use the providedgraphQLobject to execute requests.The handler will be configured with the default
ApolloWSOptions.- Parameters:
graphQL-- Returns:
-
create
@Deprecated public static ApolloWSHandler create(graphql.GraphQL graphQL, ApolloWSOptions options)
Deprecated.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
@Deprecated public static ApolloWSMessage getMessage(graphql.GraphQLContext graphQlContext)
Deprecated.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)
Deprecated.
-
-