Uses of Interface
org.axonframework.messaging.commandhandling.distributed.CommandBusConnector
Packages that use CommandBusConnector
Package
Description
-
Uses of CommandBusConnector in org.axonframework.axonserver.connector.command
Classes in org.axonframework.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 org.axonframework.messaging.commandhandling.distributed
Classes in org.axonframework.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 org.axonframework.messaging.commandhandling.distributed declared as CommandBusConnectorModifier and TypeFieldDescriptionprotected final CommandBusConnectorDelegatingCommandBusConnector.delegateConstructors in org.axonframework.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.