Interface MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointConsumerBuilder, org.apache.camel.EndpointConsumerResolver
    All Known Subinterfaces:
    MinaEndpointBuilderFactory.AdvancedMinaEndpointBuilder
    Enclosing interface:
    MinaEndpointBuilderFactory

    public static interface MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder
    extends org.apache.camel.builder.EndpointConsumerBuilder
    Advanced builder for endpoint consumers for the Mina component.
    • Method Detail

      • exceptionHandler

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder exceptionHandler​(org.apache.camel.spi.ExceptionHandler exceptionHandler)
        To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)
        Parameters:
        exceptionHandler - the value to set
        Returns:
        the dsl builder
      • exceptionHandler

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder exceptionHandler​(String exceptionHandler)
        To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)
        Parameters:
        exceptionHandler - the value to set
        Returns:
        the dsl builder
      • exchangePattern

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder exchangePattern​(org.apache.camel.ExchangePattern exchangePattern)
        Sets the exchange pattern when the consumer creates an exchange. The option is a: <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)
        Parameters:
        exchangePattern - the value to set
        Returns:
        the dsl builder
      • exchangePattern

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder exchangePattern​(String exchangePattern)
        Sets the exchange pattern when the consumer creates an exchange. The option will be converted to a <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)
        Parameters:
        exchangePattern - the value to set
        Returns:
        the dsl builder
      • noReplyLogLevel

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder noReplyLogLevel​(org.apache.camel.LoggingLevel noReplyLogLevel)
        If sync is enabled this option dictates MinaConsumer which logging level to use when logging a there is no reply to send back. The option is a: <code>org.apache.camel.LoggingLevel</code> type. Default: WARN Group: consumer (advanced)
        Parameters:
        noReplyLogLevel - the value to set
        Returns:
        the dsl builder
      • noReplyLogLevel

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder noReplyLogLevel​(String noReplyLogLevel)
        If sync is enabled this option dictates MinaConsumer which logging level to use when logging a there is no reply to send back. The option will be converted to a <code>org.apache.camel.LoggingLevel</code> type. Default: WARN Group: consumer (advanced)
        Parameters:
        noReplyLogLevel - the value to set
        Returns:
        the dsl builder
      • disconnectOnNoReply

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder disconnectOnNoReply​(boolean disconnectOnNoReply)
        If sync is enabled then this option dictates MinaConsumer if it should disconnect where there is no reply to send back. The option is a: <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        disconnectOnNoReply - the value to set
        Returns:
        the dsl builder
      • disconnectOnNoReply

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder disconnectOnNoReply​(String disconnectOnNoReply)
        If sync is enabled then this option dictates MinaConsumer if it should disconnect where there is no reply to send back. The option will be converted to a <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        disconnectOnNoReply - the value to set
        Returns:
        the dsl builder
      • maximumPoolSize

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder maximumPoolSize​(int maximumPoolSize)
        Number of worker threads in the worker pool for TCP and UDP. The option is a: <code>int</code> type. Default: 16 Group: advanced
        Parameters:
        maximumPoolSize - the value to set
        Returns:
        the dsl builder
      • maximumPoolSize

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder maximumPoolSize​(String maximumPoolSize)
        Number of worker threads in the worker pool for TCP and UDP. The option will be converted to a <code>int</code> type. Default: 16 Group: advanced
        Parameters:
        maximumPoolSize - the value to set
        Returns:
        the dsl builder
      • orderedThreadPoolExecutor

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder orderedThreadPoolExecutor​(boolean orderedThreadPoolExecutor)
        Whether to use ordered thread pool, to ensure events are processed orderly on the same channel. The option is a: <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        orderedThreadPoolExecutor - the value to set
        Returns:
        the dsl builder
      • orderedThreadPoolExecutor

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder orderedThreadPoolExecutor​(String orderedThreadPoolExecutor)
        Whether to use ordered thread pool, to ensure events are processed orderly on the same channel. The option will be converted to a <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        orderedThreadPoolExecutor - the value to set
        Returns:
        the dsl builder
      • transferExchange

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder transferExchange​(boolean transferExchange)
        Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level. The option is a: <code>boolean</code> type. Default: false Group: advanced
        Parameters:
        transferExchange - the value to set
        Returns:
        the dsl builder
      • transferExchange

        default MinaEndpointBuilderFactory.AdvancedMinaEndpointConsumerBuilder transferExchange​(String transferExchange)
        Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body, Out body, fault body, In headers, Out headers, fault headers, exchange properties, exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level. The option will be converted to a <code>boolean</code> type. Default: false Group: advanced
        Parameters:
        transferExchange - the value to set
        Returns:
        the dsl builder