码迷,mamicode.com
首页 > Web开发 > 详细

asp.net mvc 中使用单例

时间:2017-09-06 20:44:23      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:get   linq   实例   ret   creat   class   generic   ace   name   

有这样一个service,需要运行的asp.net站点上,但要保证这个实例是唯一的。单例用来启用聊天机器人,保证唯一,以免启动多个,造成客户端发送消息的时候,会造成每个机器人都发送消息,app收到多条消息。

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Wolfy.SingleDemo.Models;

namespace Wolfy.SingleDemo.Controllers
{
public class HomeController : Controller
{
// GET: Home
public ActionResult List()
{
SingleParameter single = SingleParameter.CreateInstance();
for (int i = 0; i < 10; i++)
{
single.Set((i + 1).ToString());
}
return View(single.GetNames());
}
public ActionResult Add(string name)
{
SingleParameter single = SingleParameter.CreateInstance();
single.Set(name);
return View(single.GetNames());
}
}
}

asp.net mvc 中使用单例

标签:get   linq   实例   ret   creat   class   generic   ace   name   

原文地址:http://www.cnblogs.com/sjqq/p/7486804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!