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

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

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

/**
 * @author Andrew Potter
 */
public class FallbackSubscriptionProtocolFactory extends SubscriptionProtocolFactory {
    private final SubscriptionHandlerInput subscriptionHandlerInput;

    public FallbackSubscriptionProtocolFactory(SubscriptionHandlerInput subscriptionHandlerInput) {
        super("");
        this.subscriptionHandlerInput = subscriptionHandlerInput;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy