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

com.apollographql.subscription.message.SubscritionCallbackMessage Maven / Gradle / Ivy

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