只需三步:使用C# 操作 Azure 队列
Step 1 :
安装windows Azure package
Step 2 :
配置文件增加:
- <appSettings>
- <add key="StorageConnectionString" value="your connection string" />
- </appSettings>
Step 3 :
using this Azure class
- namespace Axe.AzureStorage
- {
- using System;
- using System.IO;
- using System.Runtime.Serialization.Formatters.Binary;
- using System.Threading;
- using System.Threading.Tasks;
- using Microsoft.WindowsAzure;
- using Microsoft.WindowsAzure.Storage;
- using Microsoft.WindowsAzure.Storage.Queue;
- public class WinAzureStorageAsync
- {
- private readonly CloudQueue queue;
- private readonly int timeoutSecond;
- private CloudQueueClient queueClient;
- public CloudQueueClient QueueClient
- {
- get
- {
- if (this.queueClient != null)
- return this.queueClient;
- var storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));
- this.queueClient = storageAccount.CreateCloudQueueClient();
- return this.queueClient;
- }
- }
- ////since each time fetch message is not a block operation
- ////so need to set a timeout & keep fetching , default is 3 seconds
- private const int SleepInterval = 100;
- public WinAzureStorageAsync(string queueName, int timeoutSecond = 3)
- {
- queueName = queueName.ToLower();
- this.queue = this.QueueClient.GetQueueReference(queueName);
- if (!this.QueueClient.GetQueueReference(queueName).Exists())
- {
- this.queue.CreateIfNotExists();
- }
- this.timeoutSecond = timeoutSecond;
- }
- public async Task<CloudQueueMessage> GetMessage()
- {
- CloudQueueMessage message = null;
- var passed = 0;
- while (message == null && passed < this.timeoutSecond * 10 * SleepInterval)
- {
- message = await this.queue.GetMessageAsync();
- Thread.Sleep(SleepInterval);
- passed += SleepInterval;
- }
- if (message == null)
- {
- throw new TimeoutException("Get Message From Azure Queue Operation has been timeout");
- }
- await this.queue.DeleteMessageAsync(message);
- return message;
- }
- public async Task<string> GetString()
- {
- var msg = await this.GetMessage();
- return msg.AsString;
- }
- public async Task<byte[]> GetBytes()
- {
- var msg = await this.GetMessage();
- return msg.AsBytes;
- }
- public T Get<T>() where T : new()
- {
- var bytes = this.GetBytes();
- return this.BytesToT<T>(bytes.Result);
- }
- public async Task Add(string message)
- {
- await this.queue.AddMessageAsync(new CloudQueueMessage(message));
- }
- public async Task Add(byte[] bytes)
- {
- await this.queue.AddMessageAsync(new CloudQueueMessage(bytes));
- }
- public void Add<T>(T obj) where T : new()
- {
- var bytes = this.TToBytes(obj);
- this.Add(bytes);
- }
- /// <summary>
- /// Note : this operation make takes around 40 seconds to complete, reference here:
- /// http://msdn.microsoft.com/library/azure/dd179387.aspx
- /// </summary>
- /// <returns></returns>
- public async Task DeleteIfExists()
- {
- await this.queue.DeleteIfExistsAsync();
- }
- public async Task<bool> IsExist(string queueName)
- {
- queueName = queueName.ToLower();
- return await this.QueueClient.GetQueueReference(queueName).ExistsAsync();
- }
- public void ClearMessage()
- {
- this.queue.Clear();
- }
- private T BytesToT<T>(byte[] bytes)
- {
- using (var ms = new MemoryStream())
- {
- ms.Write(bytes, 0, bytes.Length);
- var bf = new BinaryFormatter();
- ms.Position = 0;
- var x = bf.Deserialize(ms);
- return (T)x;
- }
- }
- private byte[] TToBytes<T>(T obj)
- {
- var bf = new BinaryFormatter();
- using (var ms = new MemoryStream())
- {
- bf.Serialize(ms, obj);
- return ms.ToArray();
- }
- }
- }
- }
只需三步:使用C# 操作 Azure 队列的更多相关文章
- 只需三步--轻松反编译Android Apk文件
安卓程序是通过java语言进行编写的,可以很容易进行反编译.很多apk文件被反编译后再二次打包,就成了自己的产品,很是流氓.下面我们来看看如何进行apk的反编译,以及常用的防反编译手段. 一.反编译A ...
- 只需三步 快速完善网站Sitemap
越来越多的SEOer把优化的重点放在了站内优化上,细心的朋友应该查看一些前辈的robots.txt的时候不难发现,他们的robots中都加 入了一句Sitemap: http://www.dewang ...
- windows 下安装Apache httpd 只需三步
1.下载 Apache 官网地址:http://httpd.apache.org/docs/current/platform/windows.html#down 找到这个, 看到这几个选项: Apac ...
- iOS - 外加字体(只需三步-教你轻松实现)
外加字体 1.首先info.plist中加入属性Fonts provided by application,在item 0 处填写导入的ttf文件名 eg: <key>UIAppFonts ...
- 只需3步,快来用AI预测你爱的球队下一场能赢吗?
摘要:作为球迷,我们有时候希望自己拥有预测未来的能力. 本文分享自华为云社区<用 AI 预测球赛结果只需三步,看看你爱的球队下一场能赢吗?>,作者:HWCloudAI. 还记得今年夏天的欧 ...
- vuex其实超简单,只需3步
前言 之前几个项目中,都多多少少碰到一些组件之间需要通信的地方,而因为种种原因,event bus 的成本反而比vuex还高, 所以技术选型上选用了 vuex, 但是不知道为什么,团队里的一些新人一听 ...
- 只需一步,DLA开启TableStore多元索引查询加速!
一.背景介绍 Data Lake Analytics(简称DLA)在构建第一天就是支持直接关联分析Table Store(简称OTS)里的数据,实现存储计算分离架构,满足用户基于SQL接口分析Tabl ...
- 如何把C++的源代码改写成C代码?而C改C++只需一步!
★ 如何把C++的源代码改写成C代码? C++解释器比C语言解释器占用的存储空间要大,想要在某些特定场合兼容C++代码,同时为了节省有限的存储空间,降低成本,也为了提高效率,将用C++语言写的源程序用 ...
- PDF怎么旋转页面,只需几步轻松搞定!
有时候我们下载一个PDF文件里面有页面是旋转的情况,用手机看的时候可以把手机旋转过来看,那么用电脑的时候总不可能也转过来看吧,笔记本是可以的台式的是不行的,这个时候我们就需要把PDF文件中旋转的页面转 ...
随机推荐
- 【Hades】ades是一个开源库,基于JPA和Spring构建,通过减少开发工作量显著的改进了数据访问层的实现
几乎每个应用系统都需要通过访问数据来完成工作.要想使用领域设计方法,你就需要为实体类定义和构建资源库来实现领域对象的持久化.目前开发人员经常使用JPA来实现持久化库.JPA让持久化变得非常容易,但是仍 ...
- C和BlockCode
在使用code block的时候,需要先build,然后再run,否则run的还是上次编译的内容.
- Catch Application Exceptions in a Windows Forms Application
You need to handle the System.Windows.Forms.Application.ThreadException event for Windows Forms. Thi ...
- Automotive Security的一些资料和心得(5):Privacy
1. Introduction 1.1 "Customers own their data and we can be no more than the trsted stewards of ...
- Maven仓库详解
转载自:Maven入门指南④:仓库 1 . 仓库简介 没有 Maven 时,项目用到的 .jar 文件通常需要拷贝到 /lib 目录,项目多了,拷贝的文件副本就多了,占用磁盘空间,且难于管理.Ma ...
- python中的reduce
python中的reduce内建函数是一个二元操作函数,他用来将一个数据集合(链表,元组等)中的所有数据进行下列操作:用传给reduce中的函数 func()(必须是一个二元操作函数)先对集合中的第1 ...
- sjtu1591 Count On Tree
Description Crystal家有一棵树.树上有\(n\)个节点,编号由\(1\)到\(n\)(\(1\)号点是这棵树的根),两点之间距离为1当且仅当它们直接相连.每个点都有各自的权值,第\( ...
- matlab怎么同时显示imshow 两幅图片
matlab怎么同时显示imshow 两幅图片 matlab怎么同时显示imshow 两幅图片 方法一:subplot()函数 subplot(2,1,1); subplot(2,1,2); 分上下或 ...
- Datadog Agent是啥?它消耗什么资源?
在资本市场不那么喜人的 2015 年融资 9450 万美元的 Datadog,在运维圈刮起了一阵小旋风.作为国外很值得学习的一款平台监控产品,公司人数不足 100 的 Datadog 为什么吸引了投资 ...
- 日志分析-Web
http://my.oschina.net/chenguang/blog/376267 http://my.oschina.net/chenguang/blog/371275 http://my.os ...