All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.axonframework.spring.config.EnableHandlerSubscription Maven / Gradle / Ivy

Go to download

Module providing Spring specific helper functionality to ease configuration / set-up of an Axon application, as well as some Spring specific infrastructure components.

There is a newer version: 4.10.3
Show newest version
package org.axonframework.spring.config;

import org.springframework.context.annotation.Import;

import java.lang.annotation.*;

/**
 * @author Allard Buijze
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(MessageHandlerSubscriberDefinitionRegistrar.class)
public @interface EnableHandlerSubscription {

    boolean subscribeCommandHandlers() default true;

    boolean subscribeEventListeners() default true;

    String eventBus() default "";

    boolean subscribeEventProcessors() default true;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy