Class GraphQLWSHandlerBuilder
- java.lang.Object
-
- io.vertx.reactivex.ext.web.handler.graphql.ws.GraphQLWSHandlerBuilder
-
public class GraphQLWSHandlerBuilder extends Object
A builder forGraphQLWSHandlerinstances. 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<GraphQLWSHandlerBuilder>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description GraphQLWSHandlerBuilder(GraphQLWSHandlerBuilder delegate)GraphQLWSHandlerBuilder(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphQLWSHandlerBuilderbeforeExecute(Handler<ExecutionInputBuilderWithContext<Message>> beforeExecuteHandler)Set a callback to invoke before executing a GraphQL query.GraphQLWSHandlerbuild()booleanequals(Object o)GraphQLWSHandlerBuildergetDelegate()inthashCode()static GraphQLWSHandlerBuildernewInstance(GraphQLWSHandlerBuilder arg)GraphQLWSHandlerBuilderonConnectionInit(Handler<ConnectionInitEvent> connectionInitHandler)Customize the connection init .GraphQLWSHandlerBuilderonMessage(Handler<Message> messageHandler)Customize the message .GraphQLWSHandlerBuilderonSocketEnd(Handler<ServerWebSocket> endHandler)Customize the end .StringtoString()GraphQLWSHandlerBuilderwith(GraphQLWSOptions options)Change theGraphQLWSOptionsto use.
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<GraphQLWSHandlerBuilder> __TYPE_ARG
-
-
Constructor Detail
-
GraphQLWSHandlerBuilder
public GraphQLWSHandlerBuilder(GraphQLWSHandlerBuilder delegate)
-
GraphQLWSHandlerBuilder
public GraphQLWSHandlerBuilder(Object delegate)
-
-
Method Detail
-
getDelegate
public GraphQLWSHandlerBuilder getDelegate()
-
with
public GraphQLWSHandlerBuilder with(GraphQLWSOptions options)
Change theGraphQLWSOptionsto use.- Parameters:
options-- Returns:
- a reference to this, so the API can be used fluently
-
onConnectionInit
public GraphQLWSHandlerBuilder onConnectionInit(Handler<ConnectionInitEvent> 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
-
beforeExecute
public GraphQLWSHandlerBuilder beforeExecute(Handler<ExecutionInputBuilderWithContext<Message>> beforeExecuteHandler)
Set a callback to invoke before executing a GraphQL query.- Parameters:
beforeExecuteHandler- the callback to invoke- Returns:
- a reference to this, so the API can be used fluently
-
onMessage
public GraphQLWSHandlerBuilder onMessage(Handler<Message> messageHandler)
Customize the message . This handler will be called for eachMessagereceived.- Parameters:
messageHandler-- Returns:
- a reference to this, so the API can be used fluently
-
onSocketEnd
public GraphQLWSHandlerBuilder onSocketEnd(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
-
build
public GraphQLWSHandler build()
- Returns:
- a new instance of
GraphQLWSHandler
-
newInstance
public static GraphQLWSHandlerBuilder newInstance(GraphQLWSHandlerBuilder arg)
-
-