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

graphql.kickstart.autoconfigure.web.servlet.GraphQLSubscriptionApolloProperties Maven / Gradle / Ivy

The newest version!
package graphql.kickstart.autoconfigure.web.servlet;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties("graphql.servlet.subscriptions.apollo")
class GraphQLSubscriptionApolloProperties {

  private boolean keepAliveEnabled = true;

  private int keepAliveIntervalSeconds = 15;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy