Aaronontheweb on dev
Remove string interpolation fro… (compare)
Aaronontheweb on dev
Made cleanup call thread-safe (… (compare)
dependabot-preview[bot] on nuget
Bump System.Data.SqlClient from… (compare)
@chrisjhoare Context is realized over thread-static fields. If you are using any value from Conext in an other thread (async or not) u will need to copy it into the state.
var sender = Context.Sender;
myTask = Task.Run(async () => {
sender.Tell("hallo");
});
In general u can use the IActorRef.PipeTo(...) extensions to send back a message/result on completion.
Task.Run(async() => {
return "hello";
}).PipeTo(Context.Sender);
Receive
defined for the type of m5.Context.Self.Tell(msg, Context.Sender);
Stash.Stash();
and after Stash.UnstashAll();
Hey I have a question about event adapters and their support across persistence plugins. In short, I am trying to use an event adapter to serialise protobuf-net dtos using InMemory, Sql and Mongodb (through cosmosdb/documentdb emulator engine). I'm unsure if my event adapter implementation is incorrect or if there is a problem with the compatibility among different persistence drivers.
I have put together a solution with each of the three mechanisms (with tests) here:
https://github.com/ctrlaltdan/akka-event-adapters
Any help would be appreciated :D
""System.Byte[], System.Private.CoreLib"" = protobuf