FunctionChoiceBehaviorOptions.AllowConcurrentInvocation Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.