ServiceThrottle.MaxConcurrentCalls 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 ServiceHost 中所有调度程序对象的最大活动处理消息数。
public:
property int MaxConcurrentCalls { int get(); void set(int value); };
public int MaxConcurrentCalls { get; set; }
member this.MaxConcurrentCalls : int with get, set
Public Property MaxConcurrentCalls As Integer
属性值
服务中活动消息的上限。 默认值为 16 * 计算机中的处理器数。
示例
下面的代码示例通过引用应用程序配置文件中的 ServiceThrottle,演示了 ServiceThrottlingBehavior 的典型用法。 在这种情况下,对于一个到 InstanceContext 的连接,指定的值一次最多只能建立一个消息处理。 实际的用法必须根据经验确定。
<configuration>
<appSettings>
<!-- use appSetting to configure base address provided by host -->
<add key="baseAddress" value="http://localhost:8080/ServiceMetadata" />
</appSettings>
<system.serviceModel>
<services>
<service
name="Microsoft.WCF.Documentation.SampleService"
behaviorConfiguration="Throttled" >
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/SampleService"/>
</baseAddresses>
</host>
<endpoint
address=""
binding="wsHttpBinding"
contract="Microsoft.WCF.Documentation.ISampleService"
/>
<endpoint
address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange"
/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="Throttled">
<serviceThrottling
maxConcurrentCalls="1"
maxConcurrentSessions="1"
maxConcurrentInstances="1"
/>
<serviceMetadata
httpGetEnabled="true"
httpGetUrl=""
/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
注解
MaxConcurrentCalls 属性指定 ServiceHost 对象中的所有调度程序对象的最大活动处理消息数。 每个通道可以有一个挂起的消息,这些消息不会计入Windows Communication Foundation (WCF) 开始处理它的值MaxConcurrentCalls。
备注
此属性的值超出限制一次,就会记录一个跟踪。