Interface EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder

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

    public static interface EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the Azure Event Hubs component.
    • Method Detail

      • amqpRetryOptions

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder amqpRetryOptions​(com.azure.core.amqp.AmqpRetryOptions amqpRetryOptions)
        Sets the retry policy for EventHubAsyncClient. If not specified, the default retry options are used. The option is a: <code>com.azure.core.amqp.AmqpRetryOptions</code> type. Group: common
        Parameters:
        amqpRetryOptions - the value to set
        Returns:
        the dsl builder
      • amqpRetryOptions

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder amqpRetryOptions​(String amqpRetryOptions)
        Sets the retry policy for EventHubAsyncClient. If not specified, the default retry options are used. The option will be converted to a <code>com.azure.core.amqp.AmqpRetryOptions</code> type. Group: common
        Parameters:
        amqpRetryOptions - the value to set
        Returns:
        the dsl builder
      • amqpTransportType

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder amqpTransportType​(com.azure.core.amqp.AmqpTransportType amqpTransportType)
        Sets the transport type by which all the communication with Azure Event Hubs occurs. Default value is AmqpTransportType#AMQP. The option is a: <code>com.azure.core.amqp.AmqpTransportType</code> type. Default: AMQP Group: common
        Parameters:
        amqpTransportType - the value to set
        Returns:
        the dsl builder
      • amqpTransportType

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder amqpTransportType​(String amqpTransportType)
        Sets the transport type by which all the communication with Azure Event Hubs occurs. Default value is AmqpTransportType#AMQP. The option will be converted to a <code>com.azure.core.amqp.AmqpTransportType</code> type. Default: AMQP Group: common
        Parameters:
        amqpTransportType - the value to set
        Returns:
        the dsl builder
      • partitionId

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder partitionId​(String partitionId)
        Sets the identifier of the Event Hub partition that the events will be sent to. If the identifier is not specified, the Event Hubs service will be responsible for routing events that are sent to an available partition. The option is a: <code>java.lang.String</code> type. Group: producer
        Parameters:
        partitionId - the value to set
        Returns:
        the dsl builder
      • partitionKey

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder partitionKey​(String partitionKey)
        Sets a hashing key to be provided for the batch of events, which instructs the Event Hubs service to map this key to a specific partition. The selection of a partition is stable for a given partition hashing key. Should any other batches of events be sent using the same exact partition hashing key, the Event Hubs service will route them all to the same partition. This should be specified only when there is a need to group events by partition, but there is flexibility into which partition they are routed. If ensuring that a batch of events is sent only to a specific partition, it is recommended that the {link #setPartitionId(String) identifier of the position be specified directly} when sending the batch. The option is a: <code>java.lang.String</code> type. Group: producer
        Parameters:
        partitionKey - the value to set
        Returns:
        the dsl builder
      • producerAsyncClient

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder producerAsyncClient​(com.azure.messaging.eventhubs.EventHubProducerAsyncClient producerAsyncClient)
        Sets the EventHubProducerAsyncClient.An asynchronous producer responsible for transmitting EventData to a specific Event Hub, grouped together in batches. Depending on the options specified when creating an {linkEventDataBatch}, the events may be automatically routed to an available partition or specific to a partition. Use by this component to produce the data in camel producer. The option is a: <code>com.azure.messaging.eventhubs.EventHubProducerAsyncClient</code> type. Group: producer
        Parameters:
        producerAsyncClient - the value to set
        Returns:
        the dsl builder
      • producerAsyncClient

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder producerAsyncClient​(String producerAsyncClient)
        Sets the EventHubProducerAsyncClient.An asynchronous producer responsible for transmitting EventData to a specific Event Hub, grouped together in batches. Depending on the options specified when creating an {linkEventDataBatch}, the events may be automatically routed to an available partition or specific to a partition. Use by this component to produce the data in camel producer. The option will be converted to a <code>com.azure.messaging.eventhubs.EventHubProducerAsyncClient</code> type. Group: producer
        Parameters:
        producerAsyncClient - the value to set
        Returns:
        the dsl builder
      • connectionString

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder connectionString​(String connectionString)
        Instead of supplying namespace, sharedAccessKey, sharedAccessName ... etc, you can just supply the connection string for your eventHub. The connection string for EventHubs already include all the necessary information to connection to your EventHub. To learn on how to generate the connection string, take a look at this documentation: https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string. The option is a: <code>java.lang.String</code> type. Group: security
        Parameters:
        connectionString - the value to set
        Returns:
        the dsl builder
      • tokenCredential

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder tokenCredential​(com.azure.core.credential.TokenCredential tokenCredential)
        Still another way of authentication (beside supplying namespace, sharedAccessKey, sharedAccessName or connection string) is through Azure-AD authentication using an implementation instance of TokenCredential. The option is a: <code>com.azure.core.credential.TokenCredential</code> type. Group: security
        Parameters:
        tokenCredential - the value to set
        Returns:
        the dsl builder
      • tokenCredential

        default EventHubsEndpointBuilderFactory.EventHubsEndpointProducerBuilder tokenCredential​(String tokenCredential)
        Still another way of authentication (beside supplying namespace, sharedAccessKey, sharedAccessName or connection string) is through Azure-AD authentication using an implementation instance of TokenCredential. The option will be converted to a <code>com.azure.core.credential.TokenCredential</code> type. Group: security
        Parameters:
        tokenCredential - the value to set
        Returns:
        the dsl builder