-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added shutdown support for struct actors
- Loading branch information
1 parent
b8f0510
commit 952c778
Showing
4 changed files
with
142 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
| ||
namespace Nixie.Tests.Actors; | ||
|
||
public sealed class ShutdownActorStruct : IActorStruct<int> | ||
{ | ||
private int receivedMessages; | ||
|
||
public ShutdownActorStruct(IActorContextStruct<ShutdownActorStruct, int> _) | ||
{ | ||
|
||
} | ||
|
||
public int GetMessages() | ||
{ | ||
return receivedMessages; | ||
} | ||
|
||
private void IncrMessage() | ||
{ | ||
receivedMessages++; | ||
} | ||
|
||
public async Task Receive(int message) | ||
{ | ||
await Task.Yield(); | ||
|
||
IncrMessage(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters