com.apollographql.subscription.message.SubscritionCallbackMessage 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;
/** Common interface for HTTP callback messages. */
public sealed interface SubscritionCallbackMessage
permits CallbackMessageCheck, CallbackMessageNext, CallbackMessageComplete {
default String getKind() {
return "subscription";
}
CallbackMessageAction getAction();
String getId();
String getVerifier();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy