Interface GuavaEventBusEndpointBuilderFactory.GuavaEventBusEndpointConsumerBuilder

    • Method Detail

      • eventClass

        default GuavaEventBusEndpointBuilderFactory.GuavaEventBusEndpointConsumerBuilder eventClass​(Class<Object> eventClass)
        If used on the consumer side of the route, will filter events received from the EventBus to the instances of the class and superclasses of eventClass. Null value of this option is equal to setting it to the java.lang.Object i.e. the consumer will capture all messages incoming to the event bus. This option cannot be used together with listenerInterface option. The option is a: <code>java.lang.Class&lt;java.lang.Object&gt;</code> type. Group: common
        Parameters:
        eventClass - the value to set
        Returns:
        the dsl builder
      • eventClass

        default GuavaEventBusEndpointBuilderFactory.GuavaEventBusEndpointConsumerBuilder eventClass​(String eventClass)
        If used on the consumer side of the route, will filter events received from the EventBus to the instances of the class and superclasses of eventClass. Null value of this option is equal to setting it to the java.lang.Object i.e. the consumer will capture all messages incoming to the event bus. This option cannot be used together with listenerInterface option. The option will be converted to a <code>java.lang.Class&lt;java.lang.Object&gt;</code> type. Group: common
        Parameters:
        eventClass - the value to set
        Returns:
        the dsl builder
      • listenerInterface

        default GuavaEventBusEndpointBuilderFactory.GuavaEventBusEndpointConsumerBuilder listenerInterface​(Class<Object> listenerInterface)
        The interface with method(s) marked with the Subscribe annotation. Dynamic proxy will be created over the interface so it could be registered as the EventBus listener. Particularly useful when creating multi-event listeners and for handling DeadEvent properly. This option cannot be used together with eventClass option. The option is a: <code>java.lang.Class&lt;java.lang.Object&gt;</code> type. Group: common
        Parameters:
        listenerInterface - the value to set
        Returns:
        the dsl builder
      • listenerInterface

        default GuavaEventBusEndpointBuilderFactory.GuavaEventBusEndpointConsumerBuilder listenerInterface​(String listenerInterface)
        The interface with method(s) marked with the Subscribe annotation. Dynamic proxy will be created over the interface so it could be registered as the EventBus listener. Particularly useful when creating multi-event listeners and for handling DeadEvent properly. This option cannot be used together with eventClass option. The option will be converted to a <code>java.lang.Class&lt;java.lang.Object&gt;</code> type. Group: common
        Parameters:
        listenerInterface - the value to set
        Returns:
        the dsl builder