All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.servlet.internal.ApolloSubscriptionProtocolFactory Maven / Gradle / Ivy

There is a newer version: 6.1.3
Show newest version
package graphql.servlet.internal;

/**
 * @author Andrew Potter
 */
public class ApolloSubscriptionProtocolFactory extends SubscriptionProtocolFactory {
    public ApolloSubscriptionProtocolFactory() {
        super("graphql-ws");
    }

    @Override
    public SubscriptionProtocolHandler createHandler(SubscriptionHandlerInput subscriptionHandlerInput) {
        return new ApolloSubscriptionProtocolHandler(subscriptionHandlerInput);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy