Class GraphQLWSHandler
- java.lang.Object
 - 
- io.vertx.reactivex.ext.web.handler.graphql.ws.GraphQLWSHandler
 
 
- 
- All Implemented Interfaces:
 Handler<RoutingContext>,io.vertx.lang.rx.RxDelegate,ProtocolUpgradeHandler
public class GraphQLWSHandler extends Object implements io.vertx.lang.rx.RxDelegate, ProtocolUpgradeHandler, Handler<RoutingContext>
A handler for the GraphQL over WebSocket Protocol.NOTE: This class has been automatically generated from the
originalnon RX-ified interface using Vert.x codegen. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<GraphQLWSHandler>__TYPE_ARG 
- 
Constructor Summary
Constructors Constructor Description GraphQLWSHandler(GraphQLWSHandler delegate)GraphQLWSHandler(Object delegate) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GraphQLWSHandlerBuilderbuilder(graphql.GraphQL graphQL)Create a newGraphQLWSHandlerBuilderthat will use the providedgraphQLto build aGraphQLWSHandler.static GraphQLWSHandlercreate(graphql.GraphQL graphQL)Create a newGraphQLWSHandlerthat will use the providedgraphQLobject to execute requests.static GraphQLWSHandlercreate(graphql.GraphQL graphQL, GraphQLWSOptions options)Create a newGraphQLWSHandlerthat will use the providedgraphQLobject to execute requests.booleanequals(Object o)GraphQLWSHandlergetDelegate()voidhandle(RoutingContext event)Something has happened, so handle it.inthashCode()static GraphQLWSHandlernewInstance(GraphQLWSHandler arg)StringtoString() 
 - 
 
- 
- 
Field Detail
- 
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<GraphQLWSHandler> __TYPE_ARG
 
 - 
 
- 
Constructor Detail
- 
GraphQLWSHandler
public GraphQLWSHandler(GraphQLWSHandler delegate)
 
- 
GraphQLWSHandler
public GraphQLWSHandler(Object delegate)
 
 - 
 
- 
Method Detail
- 
getDelegate
public GraphQLWSHandler getDelegate()
- Specified by:
 getDelegatein interfaceProtocolUpgradeHandler- Specified by:
 getDelegatein interfaceio.vertx.lang.rx.RxDelegate
 
- 
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
 
- 
create
public static GraphQLWSHandler create(graphql.GraphQL graphQL)
Create a newGraphQLWSHandlerthat will use the providedgraphQLobject to execute requests.The handler will be configured with the default
GraphQLWSOptions.- Parameters:
 graphQL-- Returns:
 
 
- 
create
public static GraphQLWSHandler create(graphql.GraphQL graphQL, GraphQLWSOptions options)
Create a newGraphQLWSHandlerthat will use the providedgraphQLobject to execute requests.The handler will be configured with the given
options.- Parameters:
 graphQL-options- options for configuring theGraphQLWSOptions- Returns:
 
 
- 
builder
public static GraphQLWSHandlerBuilder builder(graphql.GraphQL graphQL)
Create a newGraphQLWSHandlerBuilderthat will use the providedgraphQLto build aGraphQLWSHandler.- Parameters:
 graphQL-- Returns:
 
 
- 
newInstance
public static GraphQLWSHandler newInstance(GraphQLWSHandler arg)
 
 - 
 
 -