Orleans: Reentrant methods

Created on 31 Dec 2017  路  1Comment  路  Source: dotnet/orleans

Is there a way to mark a single method as reentrant instead of marking the whole grain with [Reentrant]?
From reading a bit it seemed that marking a method with [Readonly] should do that but it doesn't (at least not in v1.5.3).

question

Most helpful comment

You can put the attribute [AlwaysInterleave] on a grain interface method.
It allows the marked method to interleave with any other method.

>All comments

You can put the attribute [AlwaysInterleave] on a grain interface method.
It allows the marked method to interleave with any other method.

Was this page helpful?
0 / 5 - 0 ratings