Interface QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    All Known Subinterfaces:
    QuickfixjEndpointBuilderFactory.QuickfixjEndpointBuilder
    Enclosing interface:
    QuickfixjEndpointBuilderFactory

    public static interface QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the QuickFix component.
    • Method Detail

      • lazyCreateEngine

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder lazyCreateEngine​(boolean lazyCreateEngine)
        This option allows to create QuickFIX/J engine on demand. Value true means the engine is started when first message is send or there's consumer configured in route definition. When false value is used, the engine is started at the endpoint creation. When this parameter is missing, the value of component's property lazyCreateEngines is being used. The option is a: boolean type. Default: false Group: common
      • lazyCreateEngine

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder lazyCreateEngine​(String lazyCreateEngine)
        This option allows to create QuickFIX/J engine on demand. Value true means the engine is started when first message is send or there's consumer configured in route definition. When false value is used, the engine is started at the endpoint creation. When this parameter is missing, the value of component's property lazyCreateEngines is being used. The option will be converted to a boolean type. Default: false Group: common
      • sessionID

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder sessionID​(Object sessionID)
        The optional sessionID identifies a specific FIX session. The format of the sessionID is: (BeginString):(SenderCompID)/(SenderSubID)/(SenderLocationID)-(TargetCompID)/(TargetSubID)/(TargetLocationID). The option is a: quickfix.SessionID type. Group: common
      • sessionID

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder sessionID​(String sessionID)
        The optional sessionID identifies a specific FIX session. The format of the sessionID is: (BeginString):(SenderCompID)/(SenderSubID)/(SenderLocationID)-(TargetCompID)/(TargetSubID)/(TargetLocationID). The option will be converted to a quickfix.SessionID type. Group: common
      • lazyStartProducer

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder lazyStartProducer​(boolean lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a: boolean type. Default: false Group: producer
      • lazyStartProducer

        default QuickfixjEndpointBuilderFactory.QuickfixjEndpointProducerBuilder lazyStartProducer​(String lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to a boolean type. Default: false Group: producer