Class MayInterleaveAttribute
The MayInterleaveAttribute attribute is used to mark classes that want to control request interleaving via supplied method callback.
Inheritance
System.Object
MayInterleaveAttribute
Namespace: Orleans.Concurrency
Assembly: Orleans.Core.Abstractions.dll
Syntax
public sealed class MayInterleaveAttribute : Attribute
Remarks
The callback method name should point to a public static function declared on the same class
and having the following signature: public static bool MayInterleave(InvokeMethodRequest req)
Constructors
| Improve this Doc View SourceMayInterleaveAttribute(String)
Declaration
public MayInterleaveAttribute(string callbackMethodName)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | callbackMethodName |