InvokeMethodOptions
enum
Namespace: Orleans.CodeGeneration
Invoke options for an
InvokeMethodRequest[System.Flags][Orleans.GenerateSerializer]public enum InvokeMethodOptionsRemarks
These flag values are used in Orleans generated invoker code, and should not be altered.
Fields
| Name | Value | Description |
|---|---|---|
None | 0 | No options defined. |
OneWay | 1 | Invocation is one-way with no feedback on whether the call succeeds or fails. |
ReadOnly | 2 | Invocation is read-only and can interleave with other read-only invocations. |
AlwaysInterleave | 4 | The invocation can interleave with any other request type, including write requests. |
Unordered | 8 | Invocation does not care about ordering and can consequently be optimized. |
