Class TracingQueryBusConnector
- All Implemented Interfaces:
QueryBusConnector,DescribableComponent
QueryBusConnector.
Opens a producer span around the send leg (query(QueryMessage, ProcessingContext) and
subscriptionQuery(QueryMessage, ProcessingContext, int)) and a consumer span around the receive leg
(onIncomingQuery handler invocation). These connector legs nest between the local bus dispatch / handle
spans produced by TracingQueryBus and become observable only over a real transport.
This decorator is registered by DistributedTracingConfigurationEnhancer; it is never instantiated directly
by applications.
- Since:
- 5.3.0
- Author:
- Mateusz Nowak
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.axoniq.framework.messaging.queryhandling.distributed.QueryBusConnector
QueryBusConnector.Handler, QueryBusConnector.UpdateCallback -
Constructor Summary
ConstructorsConstructorDescriptionTracingQueryBusConnector(QueryBusConnector delegate, SpanFactory spanFactory) Initializes a tracingQueryBusConnectorwrapping the givendelegate, obtaining spans from the givenspanFactory. -
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, @Nullable ProcessingContext context) Sends the givenqueryto the remote QueryBus.subscribe(QualifiedName name) Subscribes this connector to queries matching the givenname.subscriptionQuery(QueryMessage query, @Nullable ProcessingContext context, int updateBufferSize) Sends the givenqueryto the remote QueryBus.booleanunsubscribe(QualifiedName name) Unsubscribes this connector from queries with the givenname.
-
Constructor Details
-
TracingQueryBusConnector
Initializes a tracingQueryBusConnectorwrapping the givendelegate, obtaining spans from the givenspanFactory.- Parameters:
delegate- the connector to delegate tospanFactory- the factory producing the tracing spans
-
-
Method Details
-
query
public MessageStream<QueryResponseMessage> query(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
public MessageStream<QueryResponseMessage> subscriptionQuery(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.
-