Phobos.Actor.Common
1.1.1
dotnet add package Phobos.Actor.Common --version 1.1.1
NuGet\Install-Package Phobos.Actor.Common -Version 1.1.1
<PackageReference Include="Phobos.Actor.Common" Version="1.1.1" />
paket add Phobos.Actor.Common --version 1.1.1
#r "nuget: Phobos.Actor.Common, 1.1.1"
// Install Phobos.Actor.Common as a Cake Addin
#addin nuget:?package=Phobos.Actor.Common&version=1.1.1
// Install Phobos.Actor.Common as a Cake Tool
#tool nuget:?package=Phobos.Actor.Common&version=1.1.1
Phobos.Actor.Common
Phobos.Actor.Common
is a set of interfaces designed for use with Petabridge's Phobos Enterprise Integration Suite for Akka.NET.
At present, this repository exposes the following interfaces for use within Akka.NET applications that intend to leverage Phobos in production:
INeverTrace
- permanently disables tracing support for any actors marked with this interface and cannot be overridden by configuration.IWithTracing
- explicitly adds tracing support to a message, actor, etc.INeverMonitor
- permanently disables monitoring support for any actors marked with this interface and cannot be overridden by configuration.IWithMetrics
- explicitly adds monitoring support to a message, actor, etc.
And then we have some aggregate interfaces for simplification purposes:
INeverInstrumented
- permanently disables tracing and monitoring support for any actors marked with this interface and cannot be overridden by configuration.IInstrumented
- explicitly enables both tracing and monitoring support for this object.
These components are used both by internal pieces of Phobos infrastructure (i.e. you don't want a monitoring system that recursively records monitoring events for itself) and can also be freely used by end-users seeking to leverage Phobos in production.
License
Phobos is a commercial product and its end-user license agreement can be found here.
Phobos.Actor.Common
, however, is open source and is licensed under the terms of Apache 2.0.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.0 netstandard1.1 netstandard1.2 netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Windows Phone | wp8 wp81 wpa81 |
Windows Store | netcore netcore45 netcore451 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Phobos.Actor.Common:
Package | Downloads |
---|---|
Petabridge.Cmd.Host
Host engine for the Petabridge.Cmd CLI for managing Akka.NET apps and clusters. Used to load available commands into the cluster itself. |
|
Petabridge.Tracing.Zipkin
High performance, commercially supported, professional-grade .NET Standard driver for Zipkin. OpenTracing-compatible. |
|
Petabridge.Monitoring.PCF
High performance .NET driver for working with Pivotal Cloud Foundry (PCF) Metrics. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Renamed `IWithTrace` to to `IWithTracing`.