Class GraphQLHandlerBuilder
- java.lang.Object
-
- io.vertx.mutiny.ext.web.handler.graphql.GraphQLHandlerBuilder
-
public class GraphQLHandlerBuilder extends Object
A builder forGraphQLHandler
instances. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<GraphQLHandlerBuilder>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description GraphQLHandlerBuilder(io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder delegate)
GraphQLHandlerBuilder(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphQLHandlerBuilder
beforeExecute(Consumer<ExecutionInputBuilderWithContext<RoutingContext>> beforeExecuteHandler)
GraphQLHandler
build()
boolean
equals(Object o)
io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder
getDelegate()
int
hashCode()
static GraphQLHandlerBuilder
newInstance(io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder arg)
String
toString()
GraphQLHandlerBuilder
with(io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions options)
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<GraphQLHandlerBuilder> __TYPE_ARG
-
-
Constructor Detail
-
GraphQLHandlerBuilder
public GraphQLHandlerBuilder(io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder delegate)
-
GraphQLHandlerBuilder
public GraphQLHandlerBuilder(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder getDelegate()
-
with
public GraphQLHandlerBuilder with(io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions options)
- Parameters:
options
-- Returns:
- a reference to this, so the API can be used fluently
-
beforeExecute
public GraphQLHandlerBuilder beforeExecute(Consumer<ExecutionInputBuilderWithContext<RoutingContext>> beforeExecuteHandler)
- Parameters:
beforeExecuteHandler
- the callback to invoke- Returns:
-
build
public GraphQLHandler build()
- Returns:
- a new instance of
GraphQLHandler
-
newInstance
public static GraphQLHandlerBuilder newInstance(io.vertx.ext.web.handler.graphql.GraphQLHandlerBuilder arg)
-
-