Skip to content

petabridge/Phobos.Actor.Common

Repository files navigation

Phobos.Actor.Common

Phobos™ logo

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.