Class DelegatingQueryBusConnector
- All Implemented Interfaces:
DescribableComponent,QueryBusConnector
- Direct Known Subclasses:
PayloadConvertingQueryBusConnector
QueryBusConnector implementation that wraps another QueryBusConnector and delegates all calls to
it.
This can be used to add additional functionality through decoration to a QueryBusConnector without having to
implement all methods again.
- Since:
- 5.0.0
- Author:
- Steven van Beelen
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.axonframework.messaging.queryhandling.distributed.QueryBusConnector
QueryBusConnector.Handler, QueryBusConnector.UpdateCallback -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDelegatingQueryBusConnector(QueryBusConnector delegate) Initialize the delegatingQueryBusConnectorto delegate all calls to the givendelegate. -
Method Summary
Modifier and TypeMethodDescriptionvoiddescribeTo(ComponentDescriptor descriptor) Describe the properties ofthis DescribableComponentwith the givendescriptor.voidonIncomingQuery(QueryBusConnector.Handler handler) Registers a handler to process incoming query messages.query(QueryMessage query, ProcessingContext context) Sends the givenqueryto the remote QueryBus.subscribe(QualifiedName name) Subscribes this connector to queries matching the givenname.subscriptionQuery(QueryMessage query, ProcessingContext context, int updateBufferSize) Sends the givenqueryto the remote QueryBus.booleanunsubscribe(QualifiedName name) Unsubscribes this connector from queries with the givenname.
-
Field Details
-
delegate
-
-
Constructor Details
-
DelegatingQueryBusConnector
Initialize the delegatingQueryBusConnectorto delegate all calls to the givendelegate.- Parameters:
delegate- TheQueryBusConnectorto delegate all calls to.
-
-
Method Details
-
query
@Nonnull public MessageStream<QueryResponseMessage> query(@Nonnull QueryMessage query, @Nullable ProcessingContext context) Description copied from interface:QueryBusConnectorSends the givenqueryto the remote QueryBus.- Specified by:
queryin interfaceQueryBusConnector- Parameters:
query- The query to send to the remote QueryBus.context- The context, if available, in which the query is generated- Returns:
- the stream of responses for the query
- See Also:
-
subscriptionQuery
@Nonnull public MessageStream<QueryResponseMessage> subscriptionQuery(@Nonnull QueryMessage query, @Nullable ProcessingContext context, int updateBufferSize) Description copied from interface:QueryBusConnectorSends the givenqueryto the remote QueryBus.- Specified by:
subscriptionQueryin interfaceQueryBusConnector- Parameters:
query- The query to send to the remote QueryBus.context- The context, if available, in which the query is generatedupdateBufferSize- The size of the buffer used to store update for the subscription query.- Returns:
- the stream of responses for the query
- See Also:
-
subscribe
Description copied from interface:QueryBusConnectorSubscribes this connector to queries matching the givenname.- Specified by:
subscribein interfaceQueryBusConnector- Parameters:
name- TheQualifiedNameof theMessage.type()to subscribe to.- Returns:
- A
CompletableFuturethat completes successfully when this connector subscribed to the givenname.
-
unsubscribe
Description copied from interface:QueryBusConnectorUnsubscribes this connector from queries with the givenname.- Specified by:
unsubscribein interfaceQueryBusConnector- Parameters:
name- TheQualifiedNameof theMessage.type()to unsubscribe from.- Returns:
trueif unsubscribing was successful,falseotherwise.
-
onIncomingQuery
Description copied from interface:QueryBusConnectorRegisters a handler to process incoming query messages.- Specified by:
onIncomingQueryin interfaceQueryBusConnector- Parameters:
handler- The handler responsible for managing incoming queries.
-
describeTo
Description copied from interface:DescribableComponentDescribe the properties ofthis DescribableComponentwith the givendescriptor.Components should call the appropriate
describePropertymethods on the descriptor to register their properties. The descriptor is responsible for determining how these properties are formatted and structured in the final output.Best Practices: As a general rule, all relevant fields of a
DescribableComponentimplementation should be described in this method. However, developers have discretion to include only the fields that make sense in the context. Not every field may be meaningful for description purposes, especially internal implementation details. Furthermore, components might want to expose different information based on their current state. The final decision on what properties to include lies with the person implementing thedescribeTomethod, who should focus on providing information that is useful for understanding the component's configuration and state.Example implementation:
public void describeTo(ComponentDescriptor descriptor) { descriptor.describeProperty("name", this.name); descriptor.describeProperty("enabled", this.enabled); descriptor.describeProperty("configuration", this.configuration); // A nested component descriptor.describeProperty("handlers", this.eventHandlers); // A collection }- Specified by:
describeToin interfaceDescribableComponent- Parameters:
descriptor- The component descriptor to describethis DescribableComponentn its properties in.
-