public interface io.vertx.ext.web.handler.graphql.ApolloWSHandler extends io.vertx.core.Handler<io.vertx.ext.web.RoutingContext>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.web.handler.graphql.ApolloWSHandler
  super_class: java.lang.Object
{
  public static io.vertx.ext.web.handler.graphql.ApolloWSHandler create(graphql.GraphQL);
    descriptor: (Lgraphql/GraphQL;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // graphql.GraphQL graphQL
         0: .line 47
            new io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl
            dup
            aload 0 /* graphQL */
            new io.vertx.ext.web.handler.graphql.ApolloWSOptions
            dup
            invokespecial io.vertx.ext.web.handler.graphql.ApolloWSOptions.<init>:()V
            invokespecial io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl.<init>:(Lgraphql/GraphQL;Lio/vertx/ext/web/handler/graphql/ApolloWSOptions;)V
            areturn
        end local 0 // graphql.GraphQL graphQL
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  graphQL  Lgraphql/GraphQL;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
         Name  Flags
      graphQL  

  public static io.vertx.ext.web.handler.graphql.ApolloWSHandler create(graphql.GraphQL, io.vertx.ext.web.handler.graphql.ApolloWSOptions);
    descriptor: (Lgraphql/GraphQL;Lio/vertx/ext/web/handler/graphql/ApolloWSOptions;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // graphql.GraphQL graphQL
        start local 1 // io.vertx.ext.web.handler.graphql.ApolloWSOptions options
         0: .line 59
            new io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl
            dup
            aload 0 /* graphQL */
            aload 1 /* options */
            invokespecial io.vertx.ext.web.handler.graphql.impl.ApolloWSHandlerImpl.<init>:(Lgraphql/GraphQL;Lio/vertx/ext/web/handler/graphql/ApolloWSOptions;)V
            areturn
        end local 1 // io.vertx.ext.web.handler.graphql.ApolloWSOptions options
        end local 0 // graphql.GraphQL graphQL
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  graphQL  Lgraphql/GraphQL;
            0    1     1  options  Lio/vertx/ext/web/handler/graphql/ApolloWSOptions;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
         Name  Flags
      graphQL  
      options  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler connectionHandler(io.vertx.core.Handler<io.vertx.core.http.ServerWebSocket>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/ServerWebSocket;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                   Name  Flags
      connectionHandler  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler connectionInitHandler(io.vertx.core.Handler<io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/handler/graphql/ApolloWSConnectionInitEvent;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                       Name  Flags
      connectionInitHandler  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler messageHandler(io.vertx.core.Handler<io.vertx.ext.web.handler.graphql.ApolloWSMessage>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/web/handler/graphql/ApolloWSMessage;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                Name  Flags
      messageHandler  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler endHandler(io.vertx.core.Handler<io.vertx.core.http.ServerWebSocket>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/http/ServerWebSocket;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
            Name  Flags
      endHandler  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler queryContext(java.util.function.Function<io.vertx.ext.web.handler.graphql.ApolloWSMessage, java.lang.Object>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/util/function/Function<Lio/vertx/ext/web/handler/graphql/ApolloWSMessage;Ljava/lang/Object;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      factory  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler dataLoaderRegistry(java.util.function.Function<io.vertx.ext.web.handler.graphql.ApolloWSMessage, org.dataloader.DataLoaderRegistry>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/util/function/Function<Lio/vertx/ext/web/handler/graphql/ApolloWSMessage;Lorg/dataloader/DataLoaderRegistry;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
         Name  Flags
      factory  

  public abstract io.vertx.ext.web.handler.graphql.ApolloWSHandler locale(java.util.function.Function<io.vertx.ext.web.handler.graphql.ApolloWSMessage, java.util.Locale>);
    descriptor: (Ljava/util/function/Function;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/util/function/Function<Lio/vertx/ext/web/handler/graphql/ApolloWSMessage;Ljava/util/Locale;>;)Lio/vertx/ext/web/handler/graphql/ApolloWSHandler;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    MethodParameters:
         Name  Flags
      factory  
}
Signature: Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/ext/web/RoutingContext;>;
SourceFile: "ApolloWSHandler.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()