com.apollographql.subscription.message.CallbackMessageAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of federation-spring-subscription-callback Show documentation
Show all versions of federation-spring-subscription-callback Show documentation
GraphQL Java server support for Apollo Federation
The newest version!
package com.apollographql.subscription.message;
import com.fasterxml.jackson.annotation.JsonProperty;
/** HTTP callback message type */
public enum CallbackMessageAction {
@JsonProperty("check")
CHECK,
@JsonProperty("next")
NEXT,
@JsonProperty("complete")
COMPLETE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy