当前位置: 首页>>代码示例>>C#>>正文


C# NamespaceManager.CreateQueueAsync方法代码示例

本文整理汇总了C#中NamespaceManager.CreateQueueAsync方法的典型用法代码示例。如果您正苦于以下问题:C# NamespaceManager.CreateQueueAsync方法的具体用法?C# NamespaceManager.CreateQueueAsync怎么用?C# NamespaceManager.CreateQueueAsync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NamespaceManager的用法示例。


在下文中一共展示了NamespaceManager.CreateQueueAsync方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: QueueCreateAsync

        private async static Task QueueCreateAsync(NamespaceManager ns, QueueDescription queueDescription)
        {
            if (!await ns.QueueExistsAsync(queueDescription.Path))
            {
                await ns.CreateQueueAsync(queueDescription);

                ServiceBusEventSource.Log.CreatedQueue(ns.Address.ToString(), queueDescription.Path);
            }
        }
开发者ID:RobinSoenen,项目名称:RedDog,代码行数:9,代码来源:MessagingFactoryQueueExtensions.cs

示例2: SendAndCreateQueueIfNotExistsAsync

        public static async Task SendAndCreateQueueIfNotExistsAsync(this MessageSender sender, BrokeredMessage message,
            Guid functionInstanceId, NamespaceManager namespaceManager, AccessRights accessRights, CancellationToken cancellationToken)
        {
            if (sender == null)
            {
                throw new ArgumentNullException("sender");
            }
            else if (namespaceManager == null)
            {
                throw new ArgumentNullException("namespaceManager");
            }

            ServiceBusCausalityHelper.EncodePayload(functionInstanceId, message);

            bool threwMessgingEntityNotFoundException = false;
            cancellationToken.ThrowIfCancellationRequested();

            try
            {
                await sender.SendAsync(message);
                return;
            }
            catch (MessagingEntityNotFoundException)
            {
                if (accessRights != AccessRights.Manage)
                {
                    // if we don't have the required rights to create the queue,
                    // rethrow the exception
                    throw;
                }

                threwMessgingEntityNotFoundException = true;
            }

            Debug.Assert(threwMessgingEntityNotFoundException);
            cancellationToken.ThrowIfCancellationRequested();

            try
            {
                await namespaceManager.CreateQueueAsync(sender.Path);
            }
            catch (MessagingEntityAlreadyExistsException)
            {
            }

            // Clone the message because it was already consumed before (when trying to send)
            // otherwise, you get an exception
            message = message.Clone();
            cancellationToken.ThrowIfCancellationRequested();
            await sender.SendAsync(message);
        }
开发者ID:ConnorMcMahon,项目名称:azure-webjobs-sdk,代码行数:51,代码来源:MessageSenderExtensions.cs

示例3: Run

        public async Task Run(string namespaceAddress, string manageToken)
        {
            Console.WriteLine("\nCreating topology\n");
            this.sharedAccessRuleKey = SharedAccessAuthorizationRule.GenerateRandomKey();
            var namespaceManageTokenProvider = TokenProvider.CreateSharedAccessSignatureTokenProvider(manageToken);

            // Create namespace manager and create destination queue with a SAS rule that allows sending to that queue.
            var namespaceManager = new NamespaceManager(namespaceAddress, namespaceManageTokenProvider);

            var targetQueue = new QueueDescription("TargetQueue")
            {
                Authorization = { new SharedAccessAuthorizationRule("SendKey", this.sharedAccessRuleKey, new[] { AccessRights.Send }) },
            };

            targetQueue = (await namespaceManager.QueueExistsAsync(targetQueue.Path))
                ? await namespaceManager.UpdateQueueAsync(targetQueue)
                : await namespaceManager.CreateQueueAsync(targetQueue);

            var topic = new TopicDescription("SourceTopic")
            {
                Authorization = { new SharedAccessAuthorizationRule("SendKey", this.sharedAccessRuleKey, new[] { AccessRights.Send }) }
            };
            topic = (await namespaceManager.TopicExistsAsync(topic.Path))
                ? await namespaceManager.UpdateTopicAsync(topic)
                : await namespaceManager.CreateTopicAsync(topic);
            var forwardingSubscription = namespaceManager.CreateSubscription(
                new SubscriptionDescription(topic.Path, "Sub1")
                {
                    ForwardTo = targetQueue.Path
                });

            var forwardingQueue = new QueueDescription("SourceQueue")
            {
                ForwardTo = targetQueue.Path,
                Authorization =
                {
                    new SharedAccessAuthorizationRule(
                        "SendKey",
                        this.sharedAccessRuleKey,
                        new[] {AccessRights.Send})
                }
            };
            forwardingQueue = (await namespaceManager.QueueExistsAsync(forwardingQueue.Path))
                ? await namespaceManager.UpdateQueueAsync(forwardingQueue)
                : await namespaceManager.CreateQueueAsync(forwardingQueue);


            Console.WriteLine("\nSending messages\n");

            var topicFactory = MessagingFactory.Create(namespaceAddress, TokenProvider.CreateSharedAccessSignatureTokenProvider("SendKey", this.sharedAccessRuleKey));
            var topicSender = await topicFactory.CreateMessageSenderAsync(topic.Path);
            await topicSender.SendAsync(CreateMessage("M1"));

            var queueFactory = MessagingFactory.Create(namespaceAddress, TokenProvider.CreateSharedAccessSignatureTokenProvider("SendKey", this.sharedAccessRuleKey));
            var queueSender = await queueFactory.CreateMessageSenderAsync(forwardingQueue.Path);
            await queueSender.SendAsync(CreateMessage("M1"));


            var messagingFactory = MessagingFactory.Create(namespaceAddress, namespaceManageTokenProvider);
            var targetQueueReceiver = messagingFactory.CreateQueueClient(targetQueue.Path);
            while (true)
            {
                var message = await targetQueueReceiver.ReceiveAsync(TimeSpan.FromSeconds(10));
                if (message != null)
                {
                    await this.PrintReceivedMessage(message);
                    await message.CompleteAsync();
                }
                else
                {
                    break;
                }
            }
            await targetQueueReceiver.CloseAsync();

            Console.WriteLine("\nPress ENTER to delete topics and exit\n");
            Console.ReadLine();
            messagingFactory.Close();
            Task.WaitAll(
                namespaceManager.DeleteQueueAsync(targetQueue.Path),
                namespaceManager.DeleteQueueAsync(forwardingQueue.Path),
                namespaceManager.DeleteTopicAsync(topic.Path));
        }
开发者ID:Azure-Samples,项目名称:azure-servicebus-messaging-samples,代码行数:83,代码来源:Program.cs

示例4: SetupAsync

        public async Task SetupAsync(Type[] allMessageTypes, Type[] recievingMessageTypes)
        {
            _logger.Debug("Starting the setup of AzureServicebusTransport...");

            _namespaceManager = NamespaceManager.CreateFromConnectionString(_configuration.GetConnectionString());
            _messagingFactory = MessagingFactory.CreateFromConnectionString(_configuration.GetConnectionString());

            _messageTypes = allMessageTypes;

            var sendCommandTypes = _messageTypes
                .Where(t => typeof (IBusCommand)
                    .IsAssignableFrom(t));

            var sendEventTypes = _messageTypes
                .Where(t => typeof(IBusEvent)
                    .IsAssignableFrom(t));

            var recieveCommandTypes = recievingMessageTypes
                .Where(t => typeof(IBusCommand)
                    .IsAssignableFrom(t));

            var recieveEventTypes = recievingMessageTypes
                .Where(t => typeof(IBusEvent)
                    .IsAssignableFrom(t));

            if (_configuration.GetEnableTopicAndQueueCreation())
            {
                foreach (var type in sendCommandTypes)
                {
                    var path = PathFactory.QueuePathFor(type);
                    if (!_namespaceManager.QueueExists(path))
                        await _namespaceManager.CreateQueueAsync(path);

                    var client = _messagingFactory.CreateQueueClient(path);
                    client.PrefetchCount = 10; //todo;: in config?

                    var eventDrivenMessagingOptions = new OnMessageOptions
                    {
                        AutoComplete = true, //todo: in config?
                        MaxConcurrentCalls = 10 //todo: in config?
                    };
                    eventDrivenMessagingOptions.ExceptionReceived += OnExceptionReceived;
                    client.OnMessageAsync(OnMessageRecieved, eventDrivenMessagingOptions);

                    if (!_queues.TryAdd(type, client))
                    {
                        _logger.Error("Could not add the queue with type: {0}", type.FullName);
                    }
                }
                foreach (var type in sendEventTypes)
                {
                    var path = PathFactory.TopicPathFor(type);
                    if (!_namespaceManager.TopicExists(path))
                        _namespaceManager.CreateTopic(path);

                    var client = _messagingFactory.CreateTopicClient(path);

                    if (!_topics.TryAdd(type, client))
                    {
                        _logger.Error("Could not add the topic with type: {0}", type.FullName);
                    }


                }
            }

            _logger.Debug("Setup of AzureServicebusTransport completed!");

            throw new NotImplementedException();
        }
开发者ID:AtmosphereMessaging,项目名称:Cumulus-vNext,代码行数:70,代码来源:AzureServicebusTransport.cs

示例5: SetupSagaTopologyAsync

 async Task<IEnumerable<QueueDescription>> SetupSagaTopologyAsync(NamespaceManager nm)
 {
     Console.WriteLine("Setup");
     return new List<QueueDescription>
     {
         await nm.QueueExistsAsync(SagaResultQueueName)
             ? await nm.GetQueueAsync(SagaResultQueueName)
             : await nm.CreateQueueAsync(SagaResultQueueName),
         await nm.QueueExistsAsync(CancelFlightQueueName)
             ? await nm.GetQueueAsync(CancelFlightQueueName)
             : await nm.CreateQueueAsync(new QueueDescription(CancelFlightQueueName)),
         await nm.QueueExistsAsync(BookFlightQueueName)
             ? await nm.GetQueueAsync(BookFlightQueueName)
             : await nm.CreateQueueAsync(
                 new QueueDescription(BookFlightQueueName)
                 {
                     // on failure, we move deadletter messages off to the flight 
                     // booking compensator's queue
                     EnableDeadLetteringOnMessageExpiration = true,
                     ForwardDeadLetteredMessagesTo = CancelFlightQueueName
                 }),
         await nm.QueueExistsAsync(CancelHotelQueueName)
             ? await nm.GetQueueAsync(CancelHotelQueueName)
             : await nm.CreateQueueAsync(new QueueDescription(CancelHotelQueueName)),
         await nm.QueueExistsAsync(BookHotelQueueName)
             ? await nm.GetQueueAsync(BookHotelQueueName)
             : await nm.CreateQueueAsync(
                 new QueueDescription(BookHotelQueueName)
                 {
                     // on failure, we move deadletter messages off to the hotel 
                     // booking compensator's queue
                     EnableDeadLetteringOnMessageExpiration = true,
                     ForwardDeadLetteredMessagesTo = CancelHotelQueueName
                 }),
         await nm.QueueExistsAsync(CancelRentalCarQueueName)
             ? await nm.GetQueueAsync(CancelRentalCarQueueName)
             : await nm.CreateQueueAsync(new QueueDescription(CancelRentalCarQueueName)),
         await nm.QueueExistsAsync(BookRentalCarQueueName)
             ? await nm.GetQueueAsync(BookRentalCarQueueName)
             : await nm.CreateQueueAsync(
                 new QueueDescription(BookRentalCarQueueName)
                 {
                     // on failure, we move deadletter messages off to the car rental 
                     // compensator's queue
                     EnableDeadLetteringOnMessageExpiration = true,
                     ForwardDeadLetteredMessagesTo = CancelRentalCarQueueName
                 }),
         await nm.QueueExistsAsync(SagaInputQueueName)
             ? await nm.GetQueueAsync(SagaInputQueueName)
             : await nm.CreateQueueAsync(
                 new QueueDescription(SagaInputQueueName)
                 {
                     // book car is the first step
                     ForwardTo = BookRentalCarQueueName
                 })
     };
 }
开发者ID:Azure-Samples,项目名称:azure-servicebus-messaging-samples,代码行数:57,代码来源:Program.cs


注:本文中的NamespaceManager.CreateQueueAsync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。