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

com.graphql_java_generator.client.SubscriptionClient Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/**
 * 
 */
package com.graphql_java_generator.client;

import com.graphql_java_generator.exception.GraphQLRequestExecutionException;

/**
 * This interface allows the application to interact with the subscription, once it has subscribed to it. The currently
 * only available action is
 * 
 * @author etienne-sf
 */
public interface SubscriptionClient {

	/**
	 * Allows the client application to unsubscribe from a previously subscribed subscription. No more notification will
	 * be sent for this subscription. 
* This will free resources on both the client and the server. * * @throws GraphQLRequestExecutionException * */ void unsubscribe() throws GraphQLRequestExecutionException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy