Akka.Remote.Transport.Helios 1.2.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
Suggested Alternatives

Akka.Remote

Additional Details

No longer maintained. Use the default Akka.Remote transports instead.

There is a newer version of this package available.
See the version list below for details.
dotnet add package Akka.Remote.Transport.Helios --version 1.2.0
NuGet\Install-Package Akka.Remote.Transport.Helios -Version 1.2.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.Remote.Transport.Helios" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Remote.Transport.Helios --version 1.2.0
#r "nuget: Akka.Remote.Transport.Helios, 1.2.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.Remote.Transport.Helios as a Cake Addin
#addin nuget:?package=Akka.Remote.Transport.Helios&version=1.2.0

// Install Akka.Remote.Transport.Helios as a Cake Tool
#tool nuget:?package=Akka.Remote.Transport.Helios&version=1.2.0

(Legacy) Akka.NET remote transport layer based on Helios.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.0-beta2 588 9/23/2019
1.4.0-beta1 536 7/19/2019
1.3.18 1,486 3/9/2020
1.3.17 2,130 12/20/2019
1.3.16 532 11/14/2019
1.3.15 1,467 9/23/2019
1.3.14 1,501 7/30/2019
1.3.13 926 4/30/2019
1.3.12 716 3/14/2019
1.3.11 864 12/18/2018
1.3.10 969 11/2/2018
1.3.9 952 8/23/2018
1.3.8 1,188 6/5/2018
1.3.7 1,156 5/15/2018
1.3.6 1,102 4/17/2018
1.3.5 1,053 2/22/2018
1.3.4 1,103 2/1/2018
1.3.3 1,045 1/19/2018
1.3.2 2,554 10/21/2017
1.3.1 1,138 9/5/2017
1.3.0 1,046 8/11/2017
1.2.3 1,197 7/10/2017
1.2.2 1,104 6/28/2017
1.2.1 1,095 6/23/2017
1.2.0 1,200 4/12/2017

Feature Release for Akka.NET**
Akka.NET 1.2 is a major feature release that introduces the following major changes:
Akka.Remote now uses [DotNetty](https://github.com/azure/dotnetty) for its transport layer**
The biggest change for 1.2 is the removal of Helios 2.0 as the default transport and the introduction of DotNetty. The new DotNetty transport is fully backwards compatible with the Helios 1.4 and 2.* transports, so you should be able to upgrade from any Akka.NET 1.* application to 1.2 without any downtime. All of the `helios.tcp` HOCON is also supported by the DotNetty transport, so none of that needs to updated for the DotNetty transport to work out of the box.
In addition, the DotNetty transport supports TLS, which can be enabled via the following HOCON:
```
akka {
loglevel = DEBUG
actor {
provider = Akka.Remote.RemoteActorRefProvider,Akka.Remote
}
remote {
dot-netty.tcp {
port = 0
hostname = 127.0.0.1
enable-ssl = true
log-transport = true
ssl {
suppress-validation = true
certificate {
# valid ssl certificate must be installed on both hosts
path = "<valid certificate path>"
password = "<certificate password>"
# flags is optional: defaults to "default-flag-set" key storage flag
# other available storage flags:
#   exportable | machine-key-set | persist-key-set | user-key-set | user-protected
flags = [ "default-flag-set" ]
}
}
}
}
}
```
You can [read more about Akka.Remote's TLS support here](http://getakka.net/docs/remoting/security#akka-remote-with-tls-transport-layer-security-).
See [the complete DotNetty transport HOCON here](https://github.com/akkadotnet/akka.net/blob/dev/src/core/Akka.Remote/Configuration/Remote.conf#L318).
Akka.Streams and Akka.Cluster.Tools RTMed**
Akka.Streams and Akka.Cluster.Tools have graduated from beta status to stable modules and their interfaces are now considered to be stable.
CoordinatedShutdown**
One of the major improvements in Akka.NET 1.2 is the addition of the new `CoordinatedShutdown` plugin, which is designed to make it easier for nodes that are running Akka.Cluster to automatically exit a cluster gracefully whenever `ActorSystem.Terminate` is called or when the process the node is running in attempts to exit. `CoordinatedShutdown` is fully extensible and can be used to schedule custom shutdown operations as part of `ActorSystem` termination.
You can [read more about how to use `CoordinatedShutdown` here](http://getakka.net/docs/working-with-actors/coordinated-shutdown).
Additional Changes**
In addition to the above changes, there have been a large number of performance improvements, bug fixes, and documentation improvements made to Akka.NET in 1.2. [Read the full list of changes in Akka.NET 1.2 here](https://github.com/akkadotnet/akka.net/milestone/13).
| COMMITS | LOC+ | LOC- | AUTHOR |
| --- | --- | --- | --- |
| 17 | 4840 | 4460 | Alex Valuyskiy |
| 16 | 4046 | 1144 | Aaron Stannard |
| 12 | 8591 | 2984 | Sean Gilliam |
| 6 | 971 | 1300 | Sergey |
| 5 | 6787 | 2073 | Bartosz Sypytkowski |
| 4 | 6461 | 8403 | Arjen Smits |
| 4 | 333 | 125 | ravengerUA |
| 3 | 71 | 65 | Marc Piechura |
| 3 | 300 | 24 | Nick Chamberlain |
| 2 | 79 | 40 | Maxim Salamatko |
| 2 | 305 | 20 | Ismael Hamed |
| 1 | 136 | 12 | Sergey Kostrukov |
| 1 | 1015 | 45 | Lukas Rieger |
| 1 | 1 | 0 | siudeks |