graphql.servlet.ApolloSubscriptionConnectionListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-servlet Show documentation
Show all versions of graphql-java-servlet Show documentation
relay.js-compatible GraphQL servlet
package graphql.servlet;
import java.time.Duration;
import java.util.Optional;
public interface ApolloSubscriptionConnectionListener extends SubscriptionConnectionListener {
long KEEP_ALIVE_INTERVAL_SEC = 15;
String CONNECT_RESULT_KEY = "CONNECT_RESULT";
default boolean isKeepAliveEnabled() {
return true;
}
default Optional