다음을 통해 공유


ServiceThrottle.MaxConcurrentCalls 속성

정의

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

속성 값

Int32

서비스의 활성 메시지에 대한 최대 개수입니다. 기본값은 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 개체의 모든 디스패처 개체에서 동시에 처리할 수 있는 최대 메시지 수를 지정합니다. 각 채널 메시지의 값에 계산 되지 않는 보류 중 하나일 수 있습니다 MaxConcurrentCalls Windows Communication Foundation (WCF) 처리를 시작할 때까지 합니다.

참고

이 속성 값이 초과될 때마다 추적이 기록됩니다.

적용 대상