Uses of Interface
io.fluxcapacitor.javaclient.tracking.handling.HandlerRegistry
Packages that use HandlerRegistry
Package
Description
-
Uses of HandlerRegistry in io.fluxcapacitor.javaclient.configuration
Methods in io.fluxcapacitor.javaclient.configuration that return HandlerRegistryModifier and TypeMethodDescriptionprotected HandlerRegistry
DefaultFluxCapacitor.Builder.localHandlerRegistry
(MessageType messageType, Map<MessageType, HandlerDecorator> handlerDecorators, List<ParameterResolver<? super DeserializingMessage>> parameterResolvers, Function<Class<?>, HandlerRepository> handlerRepositorySupplier, RepositoryProvider repositoryProvider) -
Uses of HandlerRegistry in io.fluxcapacitor.javaclient.tracking.handling
Classes in io.fluxcapacitor.javaclient.tracking.handling that implement HandlerRegistryModifier and TypeClassDescriptionstatic class
Combines twoHandlerRegistry
instances into one.static enum
A no-op handler registry that performs no registration or dispatch.class
In-memory implementation ofHandlerRegistry
that manages and dispatches local message handlers — i.e., handlers that are invoked directly in the publishing thread without involving the Flux platform.Fields in io.fluxcapacitor.javaclient.tracking.handling declared as HandlerRegistryModifier and TypeFieldDescriptionprotected final HandlerRegistry
HandlerRegistry.MergedHandlerRegistry.first
protected final HandlerRegistry
HandlerRegistry.MergedHandlerRegistry.second
Methods in io.fluxcapacitor.javaclient.tracking.handling that return HandlerRegistryModifier and TypeMethodDescriptiondefault HandlerRegistry
HandlerRegistry.andThen
(HandlerRegistry next) Creates a composite registry that invokes both this and the given registry.static HandlerRegistry
HandlerRegistry.noOp()
A no-op registry that does not register or invoke any handlers.default HandlerRegistry
HandlerRegistry.orThen
(HandlerRegistry next) Creates a fallback registry that only invokes the given registry if this one yields no result.Methods in io.fluxcapacitor.javaclient.tracking.handling with parameters of type HandlerRegistryModifier and TypeMethodDescriptiondefault HandlerRegistry
HandlerRegistry.andThen
(HandlerRegistry next) Creates a composite registry that invokes both this and the given registry.default HandlerRegistry
HandlerRegistry.orThen
(HandlerRegistry next) Creates a fallback registry that only invokes the given registry if this one yields no result.