public static void ConfigureAzureMessaging <P>(this IAzureServiceBusMessagingService <P> component
                                                       , string channelId
                                                       , IEnumerable <P> priorityPartitions
                                                       , IEnumerable <ResourceProfile> resourceProfiles
                                                       , string connectionName
                                                       , string serviceBusConnection)
            where P : PartitionConfig
        {
            component.ConfigureMessaging(channelId
                                         , priorityPartitions
                                         , resourceProfiles);

            component.AzureConn = new AzureConnection(connectionName, serviceBusConnection);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Configures the azure messaging.
        /// </summary>
        /// <typeparam name="P">The messaging component type.</typeparam>
        /// <param name="component">The component.</param>
        /// <param name="channelId">The channel identifier.</param>
        /// <param name="priorityPartitions">The priority partitions.</param>
        /// <param name="resourceProfiles">The resource profiles.</param>
        /// <param name="connectionName">Name of the connection.</param>
        /// <param name="serviceBusConnection">The service bus connection.</param>
        /// <param name="defaultReceiveMode">The default receive mode.</param>
        /// <param name="defaultRetryPolicy">The default retry policy.</param>
        public static void ConfigureAzureMessaging <P>(this IAzureServiceBusMessagingService <P> component
                                                       , string channelId
                                                       , IEnumerable <P> priorityPartitions
                                                       , IEnumerable <ResourceProfile> resourceProfiles
                                                       , string connectionName
                                                       , string serviceBusConnection
                                                       , ReceiveMode defaultReceiveMode = ReceiveMode.PeekLock
                                                       , RetryPolicy defaultRetryPolicy = null
                                                       )
            where P : PartitionConfig
        {
            //Set the standard properties.
            component.ConfigureMessaging(channelId, priorityPartitions, resourceProfiles);

            var sbConn = new ServiceBusConnectionStringBuilder(serviceBusConnection);

            component.Connection = new AzureServiceBusConnection(sbConn, defaultReceiveMode, defaultRetryPolicy);
            component.EntityName = connectionName;
        }