Uses of Interface
io.axoniq.framework.messaging.commandhandling.distributed.CommandBusConnector
Packages that use CommandBusConnector
Package
Description
Part of the Axon Server Connector module.
Part of the Axon Messaging module.
-
Uses of CommandBusConnector in io.axoniq.framework.axonserver.connector.command
Classes in io.axoniq.framework.axonserver.connector.command that implement CommandBusConnectorModifier and TypeClassDescriptionclassAn implementation of theCommandBusConnectorthat connects to an Axon Server instance to send and receive commands. -
Uses of CommandBusConnector in io.axoniq.framework.messaging.commandhandling.distributed
Classes in io.axoniq.framework.messaging.commandhandling.distributed that implement CommandBusConnectorModifier and TypeClassDescriptionclassACommandBusConnectorimplementation that wraps anotherCommandBusConnectorand delegates all calls to it.classConnector implementation that converts the payload of outgoing messages into the expected format.Fields in io.axoniq.framework.messaging.commandhandling.distributed declared as CommandBusConnectorModifier and TypeFieldDescriptionprotected final CommandBusConnectorDelegatingCommandBusConnector.delegateConstructors in io.axoniq.framework.messaging.commandhandling.distributed with parameters of type CommandBusConnectorModifierConstructorDescriptionprotectedInitialize the WrappedConnector to delegate all calls to the givendelegate.DistributedCommandBus(CommandBus localSegment, CommandBusConnector connector, DistributedCommandBusConfiguration configuration) Constructs aDistributedCommandBususing the givenlocalSegmentforsubscribinghandlers and the givenconnectorto dispatch commands and replies to different segments of theCommandBus.PayloadConvertingCommandBusConnector(CommandBusConnector delegate, MessageConverter converter, Class<?> targetType) Initialize thePayloadConvertingConnectorto use givenconverterto convert each Message's payload intotargetTypebefore passing it to givendelegate.