Uses of Interface
com.graphql_java_generator.client.SubscriptionClient
| 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 SubscriptionClient in com.graphql_java_generator.client
Classes in com.graphql_java_generator.client that implement SubscriptionClient Modifier and Type Class Description classSubscriptionClientReactiveImplDefault implementation for theSubscriptionClientinterface.Methods in com.graphql_java_generator.client that return SubscriptionClient 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) -
Uses of SubscriptionClient in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request that return SubscriptionClient 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.