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).
You can put the attribute [AlwaysInterleave] on a grain interface method.
It allows the marked method to interleave with any other method.
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.