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 class
SubscriptionClientReactiveImpl
Default implementation for theSubscriptionClient
interface.Methods in com.graphql_java_generator.client that return SubscriptionClient Modifier and Type Method Description <R, T> SubscriptionClient
QueryExecutor. 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> SubscriptionClient
QueryExecutorImpl. 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> SubscriptionClient
QueryExecutorSpringReactiveImpl. 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> SubscriptionClient
AbstractGraphQLRequest. 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.