WCF - 服务实例管理模式

WCF 提供了三种实例上下文模式:PreCall、PreSession 以及 Single。开发人员通过 ServiceBehavior.InstanceContextMode 就可以很容易地控制服务对象的实例管理模式。而当 WCF 释放服务对象时,会检查该对象是否实现了 IDisposable 接口,并调用其 Dispose 方法,以便及时释放相关资源,同时也便于我们观察对象释放行为。

1. PreCall

在 PreCall 模式下,即便使用同一个代理对象,也会为每次调用创建一个服务实例。调用结束后,服务实例被立即释放(非垃圾回收)。对于不支持 Session 的 Binding,如 BasicHttpBinding,其缺省行为就是 PreCall。
[ServiceContract]
public interface IMyService
{[OperationContract]void Test();
}[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
public class MyServie : IMyService, IDisposable
{public MyServie(){Console.WriteLine("Constructor:{0}", this.GetHashCode());}[OperationBehavior]public void Test(){Console.WriteLine("Test:{0}", OperationContext.Current.SessionId);}public void Dispose(){Console.WriteLine("Dispose");}
}public class WcfTest
{public static void Test(){AppDomain.CreateDomain("Server").DoCallBack(delegate{ServiceHost host = new ServiceHost(typeof(MyServie), new Uri("http://localhost:8080/MyService"));host.AddServiceEndpoint(typeof(IMyService), new WSHttpBinding(), "");host.Open();});//-----------------------IMyService channel = ChannelFactory<IMyService>.CreateChannel(new WSHttpBinding(),new EndpointAddress("http://localhost:8080/MyService"));using (channel as IDisposable){channel.Test();channel.Test();}}
}

输出:
Constructor:30136159
Test:urn:uuid:df549447-52ba-4c54-9432-31a7a533d9b4
Dispose
Constructor:41153804
Test:urn:uuid:df549447-52ba-4c54-9432-31a7a533d9b4
Dispose

2. PreSession

PreSession 模式需要绑定到支持 Session 的 Binding 对象。在客户端代理触发终止操作前,WCF 为每个客户端维持同一个服务对象,因此 PreSession 模式可用来保持调用状态。也正因为如此,PreSession 在大并发服务上使用时要非常小心,避免造成服务器过度负担。虽然支持 Session 的 Binding 对象缺省就会启用 PreSession 模式,但依然建议你强制指定 SessionMode.Required 和 InstanceContextMode.PerSession。
[ServiceContract(SessionMode = SessionMode.Required)]
public interface IMyService
{[OperationContract]void Test();
}[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)]
public class MyServie : IMyService, IDisposable
{public MyServie(){Console.WriteLine("Constructor:{0}", this.GetHashCode());}[OperationBehavior]public void Test(){Console.WriteLine("Test:{0}", OperationContext.Current.SessionId);}public void Dispose(){Console.WriteLine("Dispose");}
}public class WcfTest
{public static void Test(){AppDomain.CreateDomain("Server").DoCallBack(delegate{ServiceHost host = new ServiceHost(typeof(MyServie), new Uri("http://localhost:8080/MyService"));host.AddServiceEndpoint(typeof(IMyService), new WSHttpBinding(), "");host.Open();});//-----------------------IMyService channel = ChannelFactory<IMyService>.CreateChannel(new WSHttpBinding(), new EndpointAddress("http://localhost:8080/MyService"));using (channel as IDisposable){channel.Test();channel.Test();}}
}

输出:
Constructor:30136159
Test:urn:uuid:2f01b61d-40c6-4f1b-a4d6-4f4bc3e8847a
Test:urn:uuid:2f01b61d-40c6-4f1b-a4d6-4f4bc3e8847a
Dispose

3. Single

一如其名,服务器会在启动时,创建一个唯一(Singleton)的服务对象。这个对象为所有的客户端服务,并不会随客户端终止而释放。
[ServiceContract]
public interface IMyService
{[OperationContract]void Test();
}[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class MyServie : IMyService, IDisposable
{public MyServie(){Console.WriteLine("Constructor:{0}; {1}", DateTime.Now, this.GetHashCode());}[OperationBehavior]public void Test(){Console.WriteLine("Test:{0}; {1}", DateTime.Now, OperationContext.Current.SessionId);}public void Dispose(){Console.WriteLine("Dispose:{0}", DateTime.Now);}
}public class WcfTest
{public static void Test(){AppDomain.CreateDomain("Server").DoCallBack(delegate{ServiceHost host = new ServiceHost(typeof(MyServie), new Uri("http://localhost:8080/MyService"));host.AddServiceEndpoint(typeof(IMyService), new BasicHttpBinding(), "");host.Open();});//-----------------------for (int i = 0; i < 2; i++){IMyService channel = ChannelFactory<IMyService>.CreateChannel(new BasicHttpBinding(), new EndpointAddress("http://localhost:8080/MyService"));using (channel as IDisposable){channel.Test();channel.Test();}}}
}

输出:

Constructor:2007-4-17 17:31:01; 63238509
Test:2007-4-17 17:31:03;
Test:2007-4-17 17:31:03;
Test:2007-4-17 17:31:03;
Test:2007-4-17 17:31:03;

还有另外一种方式来启动 Single ServiceHost。
AppDomain.CreateDomain("Server").DoCallBack(delegate
{MyServie service = new MyServie();ServiceHost host = new ServiceHost(service, new Uri("http://localhost:8080/MyService"));host.AddServiceEndpoint(typeof(IMyService), new BasicHttpBinding(), "");host.Open();
});

此方式最大的好处是允许我们使用非默认构造,除此之外,和上面的例子并没有什么区别。

需要特别注意的是,缺省情况下,Single 会对服务方法进行并发控制。也就是说,多个客户端需要排队等待,直到排在前面的其他客户端调用完成后才能继续。看下面的例子。
[ServiceContract]
public interface IMyService
{[OperationContract]void Test();
}[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class MyServie : IMyService, IDisposable
{public MyServie(){Console.WriteLine("Constructor:{0}", this.GetHashCode());}[OperationBehavior]public void Test(){Console.WriteLine("Test:{0}", OperationContext.Current.SessionId);Thread.Sleep(2000);Console.WriteLine("Test End:{0}", OperationContext.Current.SessionId);}public void Dispose(){Console.WriteLine("Dispose");}
}public class WcfTest
{public static void Test(){AppDomain.CreateDomain("Server").DoCallBack(delegate{ServiceHost host = new ServiceHost(typeof(MyServie), new Uri("http://localhost:8080/MyService"));host.AddServiceEndpoint(typeof(IMyService), new WSHttpBinding(), "");host.Open();});//-----------------------for (int i = 0; i < 2; i++){new Thread(delegate(){IMyService channel = ChannelFactory<IMyService>.CreateChannel(new WSHttpBinding(), new EndpointAddress("http://localhost:8080/MyService"));using (channel as IDisposable){while (true){channel.Test();}}}).Start();}}
}

输出:
Constructor:63238509
Test:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test End:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
Test End:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
Test:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test End:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
Test End:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
Test:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test End:urn:uuid:d613cfce-d454-40c9-9f4d-62b30a93ff27
Test:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
Test End:urn:uuid:313de31e-96b8-47c2-8cf3-7ae743236dfc
...

我们可以通过修改并发模式(ConcurrencyMode)来改变这种行为,但需要自己维护多线程安全。
[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single, ConcurrencyMode=ConcurrencyMode.Multiple)]
public class MyServie : IMyService, IDisposable
{//...
}

输出:
Constructor:10261382
Test:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test End:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test End:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test End:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test End:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test End:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test:urn:uuid:2bdac798-f774-40f2-b8f9-58de8d599d3c
Test End:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09
Test:urn:uuid:9a328d0e-8df7-4885-94ed-e04ceedc5a09

转载于:https://www.cnblogs.com/lzjsky/archive/2011/04/01/2002285.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/275574.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

oracle io lost,磁盘IO故障

测试工作正在如火如荼的进行&#xff0c;突然数据库就连接不上了。我连接上主机发现数据库alert_sid日志中有如下信息&#xff1a;KCF: write/open error block0x9a6 online1file2 /oracle_data1/UNDOTBS3.dbferror27072 txt: Linux Error: 5: Input/output errorAdditional in…

易思汇完成近亿元B轮融资,信中利投资

3月19日消息&#xff0c;近日&#xff0c;留学生在线付费平台易思汇宣布已在3月份完成由信中利投资的近亿元B轮融资。 易思汇联合创始人高宇同表示&#xff0c;本轮融资将主要用于留学生信用卡、留学家庭金融商城等新产品布局&#xff0c;以及扩大团队和市场投入。 易思汇成立…

远程连接 错误 内部错误_关于错误的性质和原因。 了解错误因素

远程连接 错误 内部错误Back in 2012, I was a young[er] product designer working in a small tech agency in Valencia, Spain. In parallel, I worked as a freelancer on several side projects for different clients. One day I was contacted by a new health services…

得到鹅厂最新前端开发手册一份

又逢金九银十&#xff0c;拿到大厂offer一直是程序员朋友的目标&#xff0c;但是去大厂就得拿出实力来。除了需要积累技术&#xff0c;了解并掌握面试的技巧&#xff0c;熟悉大厂面试流程&#xff0c;也必不可少。这里分享一份最新入职腾讯的前端社招面经&#xff0c;来看看鹅厂…

性能测试分析之带宽瓶颈的疑惑

第一部分&#xff0c; 测试执行 先看一图&#xff0c;再看下文 这个当然就是压力过程中带宽的使用率了&#xff0c;我们的带宽是1Gbps的&#xff0c;合计传输速率为128MB/s&#xff0c;也正因为这个就让我越来越疑惑了&#xff0c;不过通过压力过程中的各项数据我又不得不相信。…

Android 中的LayoutInflater的理解

LayoutInflater与findViewById的区别&#xff1f; 对于一个已经载入的界面&#xff0c;就可以使用findViewById()方法来获得其中的界面元素。对于一个没有被载入或者想要动态载入的界面&#xff0c;就需要使用LayoutInflater对象的inflate()方法来载入。findViewById()是查找已…

linux rootfs编译进内核,九鼎x6818开发板笔记:uboot、kernel、rootfs编译和烧写

下面记录了如何搭建嵌入开发环境&#xff0c;如何编译uboot、kernel、和文件系统&#xff0c;如何烧写镜像以及如何配置uboot环境变量。阅读注意&#xff1a;记录中(Base框中的内容)一些操作故意被添加&#xff0c;为了展示文件内容&#xff0c;故意调用cat(Ubuntu)或者type(wi…

figma下载_素描vs Figma困境

figma下载I distinctly remember how much hatred I had in my heart when I lived through my first UI update. The year was 2009; I had just gotten my braces off and I was ready to smash that ‘Like’ button on my high school crush’s status when I logged into …

祝大家七夕快乐,邀你源码共读,顺带发点红包

大家好&#xff0c;我是若川。这是一个普通的周六。只不过又叫七夕节&#xff0c;祝大家七夕节快乐~所以就不更新技术文了。估计还是有很多读者不知道我。若川名字由来是取自&#xff1a;上善若水&#xff0c;海纳百川。顺便放两篇文章。我读源码的经历&#xff0c;跟各位读者朋…

windows 系统监视器 以及建议阀值

windows 系统监视器 以及建议阀值 计数器的说明可以在添加计数器那边 资源 对象\计数器建议的阈值注释磁盘Physical Disk\% Free SpaceLogical Disk\% Free Space15%磁盘Physical Disk\% Disk Time Logical Disk\% Disk Time90%磁盘Physical Disk\Disk Reads/sec、Physical Dis…

前端人员如何在linux服务器上搭建npm私有库

为什么要搭建npm私有库&#xff1f; 为了方便下载时&#xff0c;公共包走npmjs,私有包走内部服务器。npm包下载的速度较慢&#xff0c;搭建npm私有库之后&#xff0c;会先操作私有库中是否有缓存&#xff0c;有缓存直接走缓存&#xff0c;而不用重新再去请求一遍网络。哪种方式…

硬币 假硬币 天平_小东西叫硬币

硬币 假硬币 天平During the last 1,5 years, I’ve been traveling a lot. Apart from my must-have things like laptop, sketchbook, and power bank, there constantly appears a new one, in a familiar shape but a new look. That’s 在过去的1.5年中&#xff0c;我经常…

Linux创建一个用户时分配组,useradd和groupadd(Linux创建用户\用户组\设置\分配用户权限)的使用...

前言&#xff1a;man useradd    man groupadd    info useradd    info groupadd 都可以获取相关命令的用法信息。个人比较喜欢读英文解释文档&#xff0c;没有你想象的那么complicated&#xff01;&#x1f61c;USERADD(8) System Management Commands USERADD…

尤雨溪发布的Vue 3.2 有哪些新变化?

大家好&#xff0c;我是若川。今天分享一篇 Vue 3.2 版本的文章。查看源码等系列文章。学习源码整体架构系列、年度总结、JS基础系列1前言8.10号凌晨&#xff0c;尤雨溪在微博平台官宣 Vue 3.2 版本正式发布&#xff1a;此版本包含一系列重要的新功能与性能改进&#xff0c;但并…

对象的清除

调用System.gc() 请求垃圾回收的最简单的方法&#xff0c;但是注意——只是请求&#xff0c;在调用System.gc()之后&#xff0c;有可能会释放出更多的内存空间。转载于:https://www.cnblogs.com/happykakeru/archive/2011/04/09/2010030.html

https://zeplin.io/ 设计图标注及切图

2019独角兽企业重金招聘Python工程师标准>>> https://zeplin.io/ 转载于:https://my.oschina.net/soho00147/blog/3025646

更好的设计接口_设计可以而且必须做得更好

更好的设计接口We live in a world that becomes more dependent on technology every day. Tech gives us new ways to communicate, learn, work, and play, and recently it enabled us to reveal the appalling police brutality towards black people in the US by sharin…

linux隐写文件剥离,杂项的基本解题思路(1)——文件操作隐写、图片隐写

文件操作隐写图片隐写压缩文件处理流量取证技术文章本来是分成4部分的&#xff0c;但是前两部分何在一起写了也就没有分开&#xff0c;所以干脆就只分了两部分文件基本类型的识别一、kail 下file 文件名原理就是识别文件文件头比如这个软件&#xff1a;二、WinHex通过winhex分析…

账务管理系统

2011-04-11 21:55最近写了一个账务管理系统&#xff08;个人版&#xff09;使用C#语言编写&#xff0c;编译器VS2010&#xff0c;数据库Access2010&#xff0c;系统采用三层架构&#xff0c;界面可以换肤&#xff0c; 窗体按钮可以移动&#xff0c;可以自定义皮肤&#xff0c;保…

初学者也能看懂的 Vue3 源码中那些实用的基础工具函数

1. 前言大家好&#xff0c;我是若川。最近组织了源码共读活动。每周读 200 行左右的源码。很多第一次读源码的小伙伴都感觉很有收获&#xff0c;感兴趣可以加我微信ruochuan12&#xff0c;拉你进群学习。写相对很难的源码&#xff0c;耗费了自己的时间和精力&#xff0c;也没收…