public class DefaultQueryGateway extends Object implements QueryGateway
| Constructor and Description |
|---|
DefaultQueryGateway(QueryBus queryBus,
MessageDispatchInterceptor<? super QueryMessage<?,?>>... dispatchInterceptors)
Initializes the gateway to send queries to the given
queryBus and invoking given
dispatchInterceptors prior to publication ont he query bus. |
| Modifier and Type | Method and Description |
|---|---|
<R,Q> CompletableFuture<R> |
query(String queryName,
Q query,
ResponseType<R> responseType)
Sends given
query over the QueryBus, expecting a response in the
form of responseType from a single source. |
<R,Q> Stream<R> |
scatterGather(String queryName,
Q query,
ResponseType<R> responseType,
long timeout,
TimeUnit timeUnit)
Sends given
query over the QueryBus, expecting a response in the
form of responseType from several sources. |
<Q,I,U> SubscriptionQueryResult<I,U> |
subscriptionQuery(String queryName,
Q query,
ResponseType<I> initialResponseType,
ResponseType<U> updateResponseType,
SubscriptionQueryBackpressure backpressure,
int updateBufferSize)
Sends given
query over the QueryBus and returns result containing initial response and
incremental updates (received at the moment the query is sent, until it is cancelled by the caller or closed by
the emitting side). |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitquery, query, query, scatterGather, send, send, send, send, subscriptionQuery, subscriptionQuery, subscriptionQuery, subscriptionQuery@SafeVarargs public DefaultQueryGateway(QueryBus queryBus, MessageDispatchInterceptor<? super QueryMessage<?,?>>... dispatchInterceptors)
queryBus and invoking given
dispatchInterceptors prior to publication ont he query bus.queryBus - The bus to deliver messages ondispatchInterceptors - The interceptors to invoke prior to publication on the buspublic <R,Q> CompletableFuture<R> query(String queryName, Q query, ResponseType<R> responseType)
QueryGatewayquery over the QueryBus, expecting a response in the
form of responseType from a single source. Execution may be asynchronous, depending on the QueryBus
implementation.query in interface QueryGatewayR - The response class contained in the given responseTypeQ - The query classqueryName - A String describing the query to be executedquery - The query to be sentresponseType - The ResponseType used for this queryCompletableFuture containing the query result as dictated by the given
responseTypepublic <R,Q> Stream<R> scatterGather(String queryName, Q query, ResponseType<R> responseType, long timeout, TimeUnit timeUnit)
QueryGatewayquery over the QueryBus, expecting a response in the
form of responseType from several sources. The stream is completed when a timeout occurs or when
all results are received. Execution may be asynchronous, depending on the QueryBus implementation.scatterGather in interface QueryGatewayR - The response class contained in the given responseTypeQ - The query classqueryName - A String describing the query to be executedquery - The query to be sentresponseType - The ResponseType used for this querytimeout - A timeout of long for the querytimeUnit - The selected TimeUnit for the given timeoutpublic <Q,I,U> SubscriptionQueryResult<I,U> subscriptionQuery(String queryName, Q query, ResponseType<I> initialResponseType, ResponseType<U> updateResponseType, SubscriptionQueryBackpressure backpressure, int updateBufferSize)
QueryGatewayquery over the QueryBus and returns result containing initial response and
incremental updates (received at the moment the query is sent, until it is cancelled by the caller or closed by
the emitting side).subscriptionQuery in interface QueryGatewayQ - The type of the queryI - The type of the initial responseU - The type of the incremental updatequeryName - A String describing query to be executedquery - The query to be sentinitialResponseType - The initial response type used for this queryupdateResponseType - The update response type used for this querybackpressure - The backpressure mechanism to deal with producing of incremental updatesupdateBufferSize - The size of buffer which accumulates updates before subscription to the flux
is madeQueryBus.subscriptionQuery(SubscriptionQueryMessage),
QueryBus.subscriptionQuery(SubscriptionQueryMessage, SubscriptionQueryBackpressure, int)Copyright © 2010–2018. All rights reserved.