Share via


FunctionChoiceBehaviorOptions.AllowConcurrentInvocation Property

Definition

Gets or sets whether multiple function invocations requested in parallel by the service may be invoked to run concurrently.

[System.Text.Json.Serialization.JsonPropertyName("allow_concurrent_invocation")]
public bool AllowConcurrentInvocation { get; set; }
[<System.Text.Json.Serialization.JsonPropertyName("allow_concurrent_invocation")>]
member this.AllowConcurrentInvocation : bool with get, set
Public Property AllowConcurrentInvocation As Boolean

Property Value

Attributes

Remarks

The default value is set to false. However, if the function invocations are safe to execute concurrently, such as when the function does not modify shared state, this setting can be set to true.

Applies to