have akka.net and signalr communicating

This commit is contained in:
2024-03-19 17:17:49 -06:00
parent 09e97fb2fc
commit 9ffd60ac84
17 changed files with 322 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
namespace Management.Actors;
public interface IActorBridge
{
void Tell(object message);
Task<T> Ask<T>(object message);
}