
- last updated 20 day(s) ago
- 4171 daily downloads
- 1769778 total downloads
- Latest version: 2.8.3

Phobos.Actor 1.3.2
Automatic Akka.NET tracing and monitoring integration as part of the Phobos Enterprise Framework.
Install-Package Phobos.Actor -Version 1.3.2
dotnet add package Phobos.Actor --version 1.3.2
<PackageReference Include="Phobos.Actor" Version="1.3.2"/>
paket add Phobos.Actor --version 1.3.2
Release Notes
Minor Version Release for Phobos** Phobos v1.3.2 includes some important tracing enhancements brought about as a result of [upgrading Phobos to Akka.NET v1.4.31](https://github.com/akkadotnet/akka.net/releases/tag/1.4.31): Phobos now supports tracing the output of `PipeTo` operations! This can be accomplished by making sure that the `Sender` property of the `PipeTo` operation contains a reference to the actor kicking of the `Task<T>` whose results will be piped: ```csharp var myActor = Sys.ActorOf(act => { act.ReceiveAny((o, ctx) => { // won't capture trace - no "sender" included Task.Delay(TimeSpan.FromMilliseconds(100)).PipeTo(ctx.Sender, success: () => o); // will capture trace - "Sender" is specified Task.Delay(TimeSpan.FromMilliseconds(100)).PipeTo(ctx.Sender, success: () => o, sender:ctx.Self); }); }); ```
Dependencies
.NETStandard
- Phobos.Monitoring (>=1.3.2)
- Phobos.Tracing (>=1.3.2)
- Phobos.Actor.Common (>=1.1.1)
Versions
Info
- last updated 1183 day(s) ago
- Project Site
- License Info
Statistics
- 282581 total downloads
- 444 downloads of current version
Owners and Products

Authors
Petabridge
Copyright
Copyright © 2017-2021 Petabridge
Petabridge