Akka.Logger.NLog 0.7.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Akka.Logger.NLog --version 0.7.0
NuGet\Install-Package Akka.Logger.NLog -Version 0.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Akka.Logger.NLog" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Logger.NLog --version 0.7.0
#r "nuget: Akka.Logger.NLog, 0.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Akka.Logger.NLog as a Cake Addin
#addin nuget:?package=Akka.Logger.NLog&version=0.7.0

// Install Akka.Logger.NLog as a Cake Tool
#tool nuget:?package=Akka.Logger.NLog&version=0.7.0

NLog logging adapter for Akka.NET

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on Akka.Logger.NLog:

Package Downloads
Akka.NLog The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

DEPRECATED. Use Akka.Logger.NLog instead. If you're upgrading from a previous version, this package contains instructions on how to upgrade to Akka.Logger.NLog.

Intent.Esb.Server

Intent Esb Server Library

AkkaSim

DES Simulation implementation, with pesimistic central clock

AkkaDotModule.Webnori

Package Description

FAkka.Shared

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Akka.Logger.NLog:

Repository Stars
superquanter/quanter
从原来的StockTrader迁移过来
Version Downloads Last updated
1.5.13 17,424 9/27/2023
1.5.0 25,017 3/6/2023
1.4.10 215,753 10/29/2020
1.4.5 34,205 5/4/2020
1.3.5 35,408 1/28/2020
1.3.4 4,938 1/12/2020
1.3.3 143,873 8/1/2018
1.3.1 38,127 5/7/2018
1.3.0-beta 6,578 8/31/2017
1.2.0 62,868 4/25/2017
1.1.2 32,052 10/26/2016
1.1.1 27,322 7/20/2016
1.0.8 14,048 4/28/2016
1.0.7 2,805 4/7/2016
1.0.6 10,677 1/18/2016
1.0.5 3,229 12/3/2015
1.0.4 5,180 8/8/2015
1.0.3 2,893 6/12/2015
1.0.2 2,100 6/3/2015
1.0.1 2,175 4/28/2015
1.0.0 2,003 4/9/2015
1.0.0-dev1504032244 1,618 4/3/2015
0.8.0 2,151 2/12/2015
0.7.1 2,108 12/13/2014
0.7.0 2,412 10/20/2014

Major new changes and additions in this release, including some breaking changes...
__Akka.Cluster__ Support (pre-release) - Akka.Cluster is now available on NuGet as a pre-release package (has a `-pre` suffix) and is available for testing. After installing the the Akka.Cluster module you can add take advantage of clustering via configuration, like so:
akka {
actor {
provider = "Akka.Cluster.ClusterActorRefProvider, Akka.Cluster"
}
remote {
log-remote-lifecycle-events = DEBUG
helios.tcp {
hostname = "127.0.0.1"
port = 0
}
}
cluster {
seed-nodes = [
"akka.tcp://ClusterSystem@127.0.0.1:2551",
"akka.tcp://ClusterSystem@127.0.0.1:2552"]
auto-down-unreachable-after = 10s
}
}
And then use cluster-enabled routing on individual, named routers:
/myAppRouter {
router = consistent-hashing-pool
nr-of-instances = 100
cluster {
enabled = on
max-nr-of-instances-per-node = 3
allow-local-routees = off
use-role = backend
}
}
For more information on how clustering works, please see https://github.com/akkadotnet/akka.net/pull/400
__Breaking Changes: Improved Stashing__ - The old `WithUnboundedStash` and `WithBoundedStash` interfaces have been slightly changed and the `CurrentStash` property has been renamed to `Stash`. Any old stashing code can be replaced with the following in order to continue working:
public IStash CurrentStash { get { return Stash; } set { Stash=value; } }
The `Stash` field is now automatically populated with an appropriate stash during the actor creation process and there is no need to set this field at all yourself.
__Breaking Changes: Renamed Logger Namespaces__ - The namespaces, DLL names, and NuGet packages for all logger add-ons have been changed to `Akka.Loggers.Xyz`. Please install the latest NuGet package (and uninstall the old ones) and update your Akka HOCON configurations accordingly.
__Serilog Support__ - Akka.NET now has an official [Serilog](http://serilog.net/) logger that you can install via the `Akka.Logger.Serilog` package. You can register the serilog logger via your HOCON configuration like this:
loggers=["Akka.Logger.Serilog.SerilogLogger, Akka.Logger.Serilog"]
__New Feature: Priority Mailbox__ - The `PriorityMailbox` allows you to define the priority of messages handled by your actors, and this is done by creating your own subclass of either the `UnboundedPriorityMailbox` or `BoundedPriorityMailbox` class and implementing the `PriorityGenerator` method like so:
public class ReplayMailbox : UnboundedPriorityMailbox
{
protected override int PriorityGenerator(object message)
{
if (message is HttpResponseMessage) return 1;
if (!(message is LoggedHttpRequest)) return 2;
return 3;
}
}
The smaller the return value from the `PriorityGenerator`, the higher the priority of the message. You can then configure your actors to use this mailbox via configuration, using a fully-qualified name:
replay-mailbox {
mailbox-type: "TrafficSimulator.PlaybackApp.Actors.ReplayMailbox,TrafficSimulator.PlaybackApp"
}
And from this point onward, any actor can be configured to use this mailbox via `Props`:
Context.ActorOf(Props.Create<ReplayActor>()
.WithRouter(new RoundRobinPool(3))
.WithMailbox("replay-mailbox"));
__New Feature: Test Your Akka.NET Apps Using Akka.TestKit__ - We've refactored the testing framework used for testing Akka.NET's internals into a test-framework-agnostic NuGet package you can use for unit and integration testing your own Akka.NET apps. Right now we're scarce on documentation so you'll want to take a look at the tests inside the Akka.NET source for reference.
Right now we have Akka.TestKit adapters for both MSTest and XUnit, which you can install to your own project via the following:
MSTest:
install-package Akka.TestKit.VsTest
XUnit:
install-package Akka.TestKit.Xunit