次の方法で共有


ServiceBusOptions.MaxConcurrentCallsPerSession プロパティ

定義

セッションごとの関数の同時呼び出しの最大数を取得または設定します。 したがって、同時呼び出しの合計数は MaxConcurrentSessions * MaxConcurrentCallsPerSession と等しくなります。 既定値は 1 です。 これは、 を に設定IsSessionsEnabledtrueした関数にのみ適用されます。 これは、メッセージのバッチを受信する関数には適用されません。 が true の場合 Microsoft.Azure.WebJobs.Host.Scale.ConcurrencyOptions.DynamicConcurrencyEnabled 、この値は無視され、同時実行は動的に増減されます。

public int MaxConcurrentCallsPerSession { get; set; }
member this.MaxConcurrentCallsPerSession : int with get, set
Public Property MaxConcurrentCallsPerSession As Integer

プロパティ値

処理される各セッションのメッセージ ハンドラーに対する同時呼び出しの最大数。

例外

正ではない値は、 プロパティに対して設定しようとします。

適用対象