Uses of Interface
com.graphql_java_generator.client.SubscriptionCallback
| Package | Description |
|---|---|
| com.graphql_java_generator.client | |
| com.graphql_java_generator.client.request |
This package contains all the classes used to generate the requests toward the GraphQL server.
|
-
Uses of SubscriptionCallback in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client with parameters of type SubscriptionCallback Modifier and Type Method Description <R, T> SubscriptionClientQueryExecutor. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)Executes the given subscription GraphQL request, and returns the relevantWebSocketClient.<R, T> SubscriptionClientQueryExecutorImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)Deprecated.Executes the given subscription GraphQL request, and returns the relevantWebSocketClient.<R, T> SubscriptionClientQueryExecutorSpringReactiveImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)Constructors in com.graphql_java_generator.client with parameters of type SubscriptionCallback Constructor Description GraphQLReactiveWebSocketHandler(java.lang.String request, java.lang.String subscriptionName, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messsageType, GraphQLObjectMapper objectMapper) -
Uses of SubscriptionCallback in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request with parameters of type SubscriptionCallback Modifier and Type Method Description <R, T> SubscriptionClientAbstractGraphQLRequest. exec(java.util.Map<java.lang.String,java.lang.Object> params, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)Execution of the given subscription GraphQL request, and return its response mapped in the relevant POJO.