diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index 64fe33bbaea..00000000000
--- a/.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-; This file is for unifying the coding style for different editors and IDEs.
-; More information at http://EditorConfig.org
-
-root = true
-
-[*]
-end_of_line = CRLF
-
-[*.cs]
-indent_style = space
-indent_size = 4
diff --git a/.gitattributes b/.gitattributes
index b55fe50e1c7..81956b10cdb 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -26,4 +26,6 @@
*.sh -text eol=lf
# Needed for API Approvals
-*.txt text eol=crlf
\ No newline at end of file
+*.txt text eol=crlf
+
+build.sh eol=lf
diff --git a/.gitignore b/.gitignore
index f764f5e3cd1..fc577ea2229 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,28 +1,13 @@
-# Akka
-
-# Fake directories
-src/.build/**
-
-
-
-#GitExtensions
-us.stackdump
-
-#KDiff3 and other git merge tools
-*.orig
-
-#-------------------------------------------------------------------------------
-#Based on https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
-
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
+*.userosscache
*.sln.docstates
-#MonoDevelop
+# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
@@ -36,18 +21,19 @@ build/
bld/
[Bb]in/
[Oo]bj/
+.fake/
+TestResults/
+PerfResults/
+*.lock.json
-# Roslyn cache directories
-*.ide/
+# Visual Studo 2015 cache/options directory
+.vs/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
-# NBench results
-[Pp]erf[Rr]esult*/
-
-#NUNIT
+# NUNIT
*.VisualState.xml
TestResult.xml
@@ -120,9 +106,6 @@ _TeamCity*
# NCrunch
_NCrunch_*
.*crunch*.local.xml
-*.ncrunchsolution
-*.v2.ncrunchproject
-
# MightyMoose
*.mm.*
@@ -150,8 +133,10 @@ publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
-# TODO: Comment out the next line if you want to keep your passwords hidden
+# TODO: Comment the next line if you want to checkin your web deploy settings
+# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
+*.publishproj
# NuGet Packages
*.nupkg
@@ -159,8 +144,8 @@ publish/
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
-# If using the old MSBuild-Integrated Package Restore, uncomment this:
-!**/packages/repositories.config
+# Uncomment if necessary however generally it will be regenerated when needed
+#!**/packages/repositories.config
# Windows Azure Build Output
csx/
@@ -170,8 +155,7 @@ csx/
AppPackages/
# Others
-sql/
-*.Cache
+*.[Cc]ache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
@@ -181,6 +165,7 @@ ClientBin/
*.pfx
*.publishsettings
node_modules/
+bower_components/
# RIA/Silverlight projects
Generated_Code/
@@ -197,10 +182,6 @@ UpgradeLog*.htm
*.mdf
*.ldf
-# make exception for Akka.Persistence.SqlServer database file
-!AkkaPersistenceSqlServerSpecDb.mdf
-!AkkaPersistenceSqlServerSpecDb_log.ldf
-
# Business Intelligence projects
*.rdl.data
*.bim.layout
@@ -208,24 +189,20 @@ UpgradeLog*.htm
# Microsoft Fakes
FakesAssemblies/
-/src/.Akka.boltdata/NCover/Executions/0.jf
-/src/.Akka.boltdata/NCover/Executions/ProjectId/0.jf
-/src/.Akka.boltdata/NCover/Executions/ProjectOrderIndex/0.jf
-/src/.Akka.boltdata/NCover/Projects/0.jf
-/src/.Akka.boltdata/NCover/Projects/Name/0.jf
-/src/.Akka.boltdata/Settings.json
-/src/.Akka.boltdata/TestResults.json
-resetdev.bat
-/src/packages/repositories.config
-
-# FAKE build folder
-.fake/
-# Akka.Persistence Test Output
-target/
+# Node.js Tools for Visual Studio
+.ntvs_analysis.dat
+
+# Visual Studio 6 build log
+*.plg
-# API Approval received files
-**/Akka.API.Tests/*.received.txt
+# Visual Studio 6 workspace options file
+*.opt
-# include self-signed test certificate for SSL Tests
-!src/core/Akka.Remote.Tests/Resources/akka-validcert.pfx
\ No newline at end of file
+tools/
+build/
+.nuget/
+.dotnet/
+/src/core/Akka.API.Tests/CoreAPISpec.ApproveStreams.received.txt
+launchSettings.json
+.idea/
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index c8afe3308f5..00000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-language: objective-c
-
-env:
- matrix:
- - MONO_VERSION="3.6.0"
-
-before_install:
- - wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-x86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg"
- - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target /
-
-script:
- - ./build.sh BuildMono
- - ./build.sh RunTestsMono
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 789dcb4c886..d9a9cbacd2f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -17,7 +17,7 @@ If you have commits that looks like this _"Merge branch 'my-branch' into dev"_ o
After reviewing a Pull request, we might ask you to fix some commits. After you've done that you need to force push to update your branch in your local fork.
-####Title and Description for the Pull Request####
+#### Title and Description for the Pull Request
Give the PR a descriptive title and in the description field describe what you have done in general terms and why. This will help the reviewers greatly, and provide a history for the future.
Especially if you modify something existing, be very clear! Have you changed any algorithms, or did you just intend to reorder the code? Justify why the changes are needed.
diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md
new file mode 100644
index 00000000000..2dce55c6e53
--- /dev/null
+++ b/ISSUE_TEMPLATE.md
@@ -0,0 +1,6 @@
+When creating a new issue, please make sure the following information is part of your issue description. (if applicable). Thank You!
+
+- Which Akka.Net version you are using
+- On which platform you are using Akka.Net
+- A list of steps to reproduce the issue. Or an gist or github repo which can be easily used to reproduce your case.
+
diff --git a/README.md b/README.md
index 254009a9784..dcde48d3a56 100644
--- a/README.md
+++ b/README.md
@@ -47,9 +47,9 @@ PM> Install-Package Akka.FSharp
### Contributing
#### Where Can I Contribute?
-[![Critical Issues](https://badge.waffle.io/akkadotnet/akka.net.svg?label=help%20wanted&title=Issues Needing Help Now!)](http://waffle.io/akkadotnet/akka.net)
+[![Critical Issues](https://badge.waffle.io/akkadotnet/akka.net.svg?label=help%20wanted&title=Issues%20Needing%20Help%20Now!)](http://waffle.io/akkadotnet/akka.net)
-[![Stories Up For Grabs](https://badge.waffle.io/akkadotnet/akka.net.svg?label=up%20for%20grabs&title=General Issues Up For Grabs)](http://waffle.io/akkadotnet/akka.net)
+[![Stories Up For Grabs](https://badge.waffle.io/akkadotnet/akka.net.svg?label=up%20for%20grabs&title=General%20Issues%20Up%20For%20Grabs)](http://waffle.io/akkadotnet/akka.net)
> *All contributions are welcome! Please consider the [issues categorized in the `Help!` column](http://waffle.io/akkadotnet/akka.net) first, as they are areas we could really use your help :)*
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 53c93ca2bc6..769655cc04e 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,51 @@
+#### 1.3.0 August 11 2017 ####
+**Feature Release for Akka.NET**
+Akka.NET 1.3.0 is a major feature release that introduces the significant changes to Akka.NET and its runtime.
+
+**.NET Core and .NET Standard 1.6 Support**
+This release introduces support for .NET Standard 1.6 for our core libraries and .NET Core 1.1 for the MultiNode Test Runner standalone executable. All packages for Akka.NET are dual-released under both .NET 4.5 and .NET Standard 1.6.
+
+As a side note: Akka.NET on .NET 4.5 is not wire compatible with Akka.NET on .NET Core; this is due to fundamental changes made to the base types in the CLR on .NET Core. It's a common problem facing many different serializers and networking libraries in .NET at the moment. You can use a X-plat serializer we've developed here: https://github.com/akkadotnet/akka.net/pull/2947 - please comment on that thread if you're considering building hybrid .NET and .NET Core clusters.
+
+**Akka.Persistence Released to Market**
+Akka.Persistence has graduated from beta status to stable modules and its interfaces are now considered to be stable. We'll begin updating all of the Akka.Persistence plugins to stable and to add .NET Standard / .NET 4.5 support to each of them as well following this patch.
+
+**DocFx-based Documentation Site**
+Documentation is now generated using DocFx and compiled from within the Akka.NET project rather than a separate documentation repository.
+
+**API Changes**
+This release does **not** maintain wire format compatibility with the previous release (v1.2.3) inside Akka.Remote; primarily this is due to having to upgrade from Google Protobuf2 to Protobuf3 in order to add .NET Standard support, but we've also taken the liberty of making other serialization improvements while we're at it. So be advised that during an upgrade from 1.2.* to 1.3.* there will be periods of network disruption between nodes using different versions of the service.
+
+**Akka.Remote Performance Improvements**
+Akka.Remote's throughput has been significantly increased.
+
+[See the full set of Akka.NET 1.3.0 fixes here](https://github.com/akkadotnet/akka.net/milestone/14).
+
+| COMMITS | LOC+ | LOC- | AUTHOR |
+| --- | --- | --- | --- |
+| 64 | 7109 | 2670 | Marc Piechura |
+| 61 | 2420 | 6703 | Nick Chamberlain |
+| 46 | 2316 | 10066 | Aaron Stannard |
+| 42 | 56428 | 85473 | Alex Valuyskiy |
+| 32 | 7924 | 9483 | ravengerUA |
+| 31 | 17284 | 13592 | Bartosz Sypytkowski |
+| 25 | 2527 | 1124 | Gregorius Soedharmo |
+| 21 | 7810 | 1688 | zbynek001 |
+| 11 | 1932 | 2167 | Sean Gilliam |
+| 9 | 946 | 219 | Arjen Smits |
+| 4 | 679 | 105 | alexvaluyskiy |
+| 4 | 344 | 6 | Lealand Vettleson |
+| 4 | 1644 | 2210 | Arkatufus |
+| 3 | 32 | 6 | Lukas Rieger |
+| 3 | 153 | 17 | Quartus Dev |
+| 2 | 8 | 11 | Paweł Bańka |
+| 2 | 4866 | 12678 | olegz |
+| 2 | 1148 | 176 | Ismael Hamed |
+| 1 | 62 | 5 | Mikhail Kantarovskiy |
+| 1 | 4 | 2 | tstojecki |
+| 1 | 22 | 2 | Maxim Cherednik |
+| 1 | 1 | 1 | Sean Killeen |
+
#### 1.2.3 July 07 2017 ####
**Maintenance Release for Akka.NET 1.2**
diff --git a/build.cmd b/build.cmd
index abf65d45ecc..3cb534eae56 100644
--- a/build.cmd
+++ b/build.cmd
@@ -1,37 +1 @@
-@echo off
-
-pushd %~dp0
-
-SETLOCAL
-SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
-
-IF EXIST %CACHED_NUGET% goto copynuget
-echo Downloading latest version of NuGet.exe...
-IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
-@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe' -OutFile '%CACHED_NUGET%'"
-
-:copynuget
-IF EXIST src\.nuget\nuget.exe goto restore
-md src\.nuget
-copy %CACHED_NUGET% src\.nuget\nuget.exe > nul
-
-:restore
-
-pushd %~dp0
-
-src\.nuget\NuGet.exe install FAKE -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages -ExcludeVersion -Version 4.16.1
-
-src\.nuget\NuGet.exe install NUnit.Console -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages\FAKE -ExcludeVersion -Version 3.2.1
-src\.nuget\NuGet.exe install xunit.runner.console -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages\FAKE -ExcludeVersion -Version 2.0.0
-src\.nuget\NuGet.exe install NBench.Runner -OutputDirectory src\packages -ExcludeVersion -Version 0.3.3
-src\.nuget\NuGet.exe install Microsoft.SourceBrowser -OutputDirectory src\packages -ExcludeVersion
-
-if not exist src\packages\SourceLink.Fake\tools\SourceLink.fsx (
- src\.nuget\nuget.exe install SourceLink.Fake -ConfigFile src\.nuget\Nuget.Config -OutputDirectory src\packages -ExcludeVersion
-)
-rem cls
-
-set encoding=utf-8
-src\packages\FAKE\tools\FAKE.exe build.fsx %*
-
-popd
+PowerShell.exe -file "build.ps1" %*
\ No newline at end of file
diff --git a/build.fsx b/build.fsx
index 208f840efc4..8b63b4de1dc 100644
--- a/build.fsx
+++ b/build.fsx
@@ -1,329 +1,194 @@
-#I @"src/packages/FAKE/tools"
+#I @"tools/FAKE/tools"
#r "FakeLib.dll"
-#r "System.Xml.Linq"
+#load "./buildIncremental.fsx"
open System
open System.IO
open System.Text
-open Fake
-open Fake.FileUtils
-open Fake.TaskRunnerHelper
-open Fake.ProcessHelper
-
-cd __SOURCE_DIRECTORY__
-
-//--------------------------------------------------------------------------------
-// Information about the project for Nuget and Assembly info files
-//--------------------------------------------------------------------------------
+open System.Diagnostics
+open Fake
+open Fake.DotNetCli
+open Fake.DocFxHelper
+open Fake.Git
-let product = "Akka.NET"
-let authors = [ "Akka.NET Team" ]
-let copyright = "Copyright © 2013-2017 Akka.NET Team"
-let company = "Akka.NET Team"
-let description = "Akka.NET is a port of the popular Java/Scala framework Akka to .NET"
-let tags = ["akka";"actors";"actor";"model";"Akka";"concurrency"]
+// Variables
let configuration = "Release"
-let toolDir = "tools"
-let CloudCopyDir = toolDir @@ "CloudCopy"
-let AzCopyDir = toolDir @@ "AzCopy"
-
-// Read release notes and version
-
-let parsedRelease =
- File.ReadLines "RELEASE_NOTES.md"
- |> ReleaseNotesHelper.parseReleaseNotes
-
-let envBuildNumber = System.Environment.GetEnvironmentVariable("BUILD_NUMBER")
-let buildNumber = if String.IsNullOrWhiteSpace(envBuildNumber) then "0" else envBuildNumber
-
-let version = parsedRelease.AssemblyVersion + "." + buildNumber
-let preReleaseVersion = version + "-beta"
-
-let isUnstableDocs = hasBuildParam "unstable"
-let isPreRelease = hasBuildParam "nugetprerelease"
-let release = if isPreRelease then ReleaseNotesHelper.ReleaseNotes.New(version, version + "-beta", parsedRelease.Notes) else parsedRelease
+let solution = "./src/Akka.sln"
-printfn "Assembly version: %s\nNuget version; %s\n" release.AssemblyVersion release.NugetVersion
-//--------------------------------------------------------------------------------
// Directories
+let toolsDir = __SOURCE_DIRECTORY__ @@ "tools"
+let output = __SOURCE_DIRECTORY__ @@ "bin"
+let outputTests = __SOURCE_DIRECTORY__ @@ "TestResults"
+let outputPerfTests = __SOURCE_DIRECTORY__ @@ "PerfResults"
+let outputBinaries = output @@ "binaries"
+let outputNuGet = output @@ "nuget"
+let outputMultiNode = outputTests @@ "multinode"
+let outputBinariesNet45 = outputBinaries @@ "net45"
+let outputBinariesNetStandard = outputBinaries @@ "netstandard1.6"
+
+let buildNumber = environVarOrDefault "BUILD_NUMBER" "0"
+let preReleaseVersionSuffix = (if (not (buildNumber = "0")) then (buildNumber) else "") + "-beta"
+let versionSuffix =
+ match (getBuildParam "nugetprerelease") with
+ | "dev" -> preReleaseVersionSuffix
+ | _ -> ""
+
+let releaseNotes =
+ File.ReadLines "./RELEASE_NOTES.md"
+ |> ReleaseNotesHelper.parseReleaseNotes
-let binDir = "bin"
-let testOutput = FullName "TestResults"
-let perfOutput = FullName "PerfResults"
-
-let nugetDir = binDir @@ "nuget"
-let workingDir = binDir @@ "build"
-let libDir = workingDir @@ @"lib\net45\"
-let nugetExe = FullName @"src\.nuget\NuGet.exe"
-let docDir = "bin" @@ "doc"
-let sourceBrowserDocsDir = binDir @@ "sourcebrowser"
-let msdeployPath = "C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe"
-
-open Fake.RestorePackageHelper
-Target "RestorePackages" (fun _ ->
- "./src/Akka.sln"
- |> RestoreMSSolutionPackages (fun p ->
- { p with
- OutputPath = "./src/packages"
- Retries = 4 })
- )
-
-//--------------------------------------------------------------------------------
-// Clean build results
-
-Target "Clean" <| fun _ ->
- DeleteDir binDir
-
-//--------------------------------------------------------------------------------
-// Generate AssemblyInfo files with the version for release notes
-
-open AssemblyInfoFile
-
-Target "AssemblyInfo" <| fun _ ->
- CreateCSharpAssemblyInfoWithConfig "src/SharedAssemblyInfo.cs" [
- Attribute.Company company
- Attribute.Copyright copyright
- Attribute.Trademark ""
- Attribute.Version version
- Attribute.FileVersion version ] <| AssemblyInfoFileConfig(false)
-
- for file in !! "src/**/AssemblyInfo.fs" do
- let title =
- file
- |> Path.GetDirectoryName
- |> Path.GetDirectoryName
- |> Path.GetFileName
-
- CreateFSharpAssemblyInfo file [
- Attribute.Title title
- Attribute.Product product
- Attribute.Description description
- Attribute.Copyright copyright
- Attribute.Company company
- Attribute.ComVisible false
- Attribute.CLSCompliant true
- Attribute.Version version
- Attribute.FileVersion version ]
-
-
-//--------------------------------------------------------------------------------
-// Build the solution
-
-Target "Build" <| fun _ ->
-
- !!"src/Akka.sln"
- |> MSBuildRelease "" "Rebuild"
- |> ignore
-
-//--------------------------------------------------------------------------------
-// Build the docs
-Target "Docs" <| fun _ ->
- !! "documentation/akkadoc.shfbproj"
- |> MSBuildRelease "" "Rebuild"
- |> ignore
-
-//--------------------------------------------------------------------------------
-// Push DOCs content to Windows Azure blob storage
-Target "AzureDocsDeploy" (fun _ ->
- let rec pushToAzure docDir azureUrl container azureKey trialsLeft =
- let tracing = enableProcessTracing
- enableProcessTracing <- false
- let arguments = sprintf "/Source:%s /Dest:%s /DestKey:%s /S /Y /SetContentType" (Path.GetFullPath docDir) (azureUrl @@ container) azureKey
- tracefn "Pushing docs to %s. Attempts left: %d" (azureUrl) trialsLeft
- try
-
- let result = ExecProcess(fun info ->
- info.FileName <- AzCopyDir @@ "AzCopy.exe"
- info.Arguments <- arguments) (TimeSpan.FromMinutes 120.0) //takes a very long time to upload
- if result <> 0 then failwithf "Error during AzCopy.exe upload to azure."
- with exn ->
- if (trialsLeft > 0) then (pushToAzure docDir azureUrl container azureKey (trialsLeft-1))
- else raise exn
- let canPush = hasBuildParam "azureKey" && hasBuildParam "azureUrl"
- if (canPush) then
- printfn "Uploading API docs to Azure..."
- let azureUrl = getBuildParam "azureUrl"
- let azureKey = (getBuildParam "azureKey") + "==" //hack, because it looks like FAKE arg parsing chops off the "==" that gets tacked onto the end of each Azure storage key
- if(isUnstableDocs) then
- pushToAzure docDir azureUrl "unstable" azureKey 3
- if(not isUnstableDocs) then
- pushToAzure docDir azureUrl "stable" azureKey 3
- pushToAzure docDir azureUrl release.NugetVersion azureKey 3
- if(not canPush) then
- printfn "Missing required parameters to push docs to Azure. Run build HelpDocs to find out!"
-
+Target "Clean" (fun _ ->
+ ActivateFinalTarget "KillCreatedProcesses"
+
+ CleanDir output
+ CleanDir outputTests
+ CleanDir outputPerfTests
+ CleanDir outputBinaries
+ CleanDir outputNuGet
+ CleanDir outputMultiNode
+ CleanDir outputBinariesNet45
+ CleanDir outputBinariesNetStandard
+ CleanDir "docs/_site"
+
+ CleanDirs !! "./**/bin"
+ CleanDirs !! "./**/obj"
)
-Target "PublishDocs" DoNothing
+Target "AssemblyInfo" (fun _ ->
+ XmlPokeInnerText "./src/common.props" "//Project/PropertyGroup/VersionPrefix" releaseNotes.AssemblyVersion
+ XmlPokeInnerText "./src/common.props" "//Project/PropertyGroup/PackageReleaseNotes" (releaseNotes.Notes |> String.concat "\n")
+)
-//--------------------------------------------------------------------------------
-// Build the SourceBrowser docs
-//--------------------------------------------------------------------------------
-Target "GenerateSourceBrowser" <| (fun _ ->
- DeleteDir sourceBrowserDocsDir
+Target "RestorePackages" (fun _ ->
+ let additionalArgs = if versionSuffix.Length > 0 then [sprintf "/p:VersionSuffix=%s" versionSuffix] else []
- let htmlGeneratorPath = "src/packages/Microsoft.SourceBrowser/tools/HtmlGenerator.exe"
- let arguments = sprintf "/out:%s %s" sourceBrowserDocsDir "src/Akka.sln"
- printfn "Using SourceBrowser: %s %s" htmlGeneratorPath arguments
-
- let result = ExecProcess(fun info ->
- info.FileName <- htmlGeneratorPath
- info.Arguments <- arguments) (System.TimeSpan.FromMinutes 20.0)
-
- if result <> 0 then failwithf "SourceBrowser failed. %s %s" htmlGeneratorPath arguments
+ DotNetCli.Restore
+ (fun p ->
+ { p with
+ Project = solution
+ NoCache = false
+ AdditionalArgs = additionalArgs })
)
-//--------------------------------------------------------------------------------
-// Publish the SourceBrowser docs
-//--------------------------------------------------------------------------------
-Target "PublishSourceBrowser" <| (fun _ ->
- let canPublish = hasBuildParam "publishsettings"
- if (canPublish) then
- let sourceBrowserPublishSettingsPath = getBuildParam "publishsettings"
- let arguments = sprintf "-verb:sync -source:contentPath=\"%s\" -dest:contentPath=sourcebrowser,publishSettings=\"%s\"" (Path.GetFullPath sourceBrowserDocsDir) sourceBrowserPublishSettingsPath
- printfn "Using MSDeploy: %s %s" msdeployPath arguments
-
- let result = ExecProcess(fun info ->
- info.FileName <- msdeployPath
- info.Arguments <- arguments) (System.TimeSpan.FromMinutes 30.0) //takes a long time to upload
-
- if result <> 0 then failwithf "MSDeploy failed. %s %s" msdeployPath arguments
- else
- printfn "Missing required parameter to publish SourceBrowser docs. Run build HelpSourceBrowserDocs to find out!"
+Target "Build" (fun _ ->
+ let additionalArgs = if versionSuffix.Length > 0 then [sprintf "/p:VersionSuffix=%s" versionSuffix] else []
+
+ DotNetCli.Build
+ (fun p ->
+ { p with
+ Project = solution
+ Configuration = configuration
+ AdditionalArgs = additionalArgs })
)
//--------------------------------------------------------------------------------
-// Copy the build output to bin directory
+// Tests targets
//--------------------------------------------------------------------------------
-Target "CopyOutput" <| fun _ ->
+module internal ResultHandling =
+ let (|OK|Failure|) = function
+ | 0 -> OK
+ | x -> Failure x
+
+ let buildErrorMessage = function
+ | OK -> None
+ | Failure errorCode ->
+ Some (sprintf "xUnit2 reported an error (Error Code %d)" errorCode)
+
+ let failBuildWithMessage = function
+ | DontFailBuild -> traceError
+ | _ -> (fun m -> raise(FailedTestsException m))
+
+ let failBuildIfXUnitReportedError errorLevel =
+ buildErrorMessage
+ >> Option.iter (failBuildWithMessage errorLevel)
+
+open BuildIncremental.IncrementalTests
+
+Target "RunTests" (fun _ ->
+ ActivateFinalTarget "KillCreatedProcesses"
+ let projects =
+ match getBuildParamOrDefault "incremental" "" with
+ | "true" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalUnitTests() |> Seq.map (fun x -> printfn "\t%s" x; x)
+ | "experimental" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalUnitTests() |> Seq.iter log
+ getUnitTestProjects()
+ | _ -> log "All test projects will be run..."
+ getUnitTestProjects()
- let copyOutput project =
- let src = "src" @@ project @@ @"bin/Release/"
- let dst = binDir @@ project
- CopyDir dst src allFiles
- [ "core/Akka"
- "core/Akka.FSharp"
- "core/Akka.TestKit"
- "core/Akka.Remote"
- "core/Akka.Remote.TestKit"
- "core/Akka.Cluster"
- "core/Akka.Cluster.TestKit"
- "core/Akka.MultiNodeTestRunner"
- "core/Akka.Persistence"
- "core/Akka.Persistence.FSharp"
- "core/Akka.Persistence.TestKit"
- "core/Akka.Persistence.Query"
- "core/Akka.Streams"
- "core/Akka.Streams.TestKit"
- "contrib/dependencyinjection/Akka.DI.Core"
- "contrib/dependencyinjection/Akka.DI.TestKit"
- "contrib/testkits/Akka.TestKit.Xunit"
- "contrib/testkits/Akka.TestKit.Xunit2"
- "contrib/serializers/Akka.Serialization.Wire"
- "contrib/serializers/Akka.Serialization.Hyperion"
- "contrib/cluster/Akka.Cluster.Tools"
- "contrib/cluster/Akka.Cluster.Sharding"
- "contrib/cluster/Akka.DistributedData"
- "contrib/cluster/Akka.DistributedData.LightningDB"
- ]
- |> List.iter copyOutput
-
-Target "BuildRelease" DoNothing
-
-
+ let runSingleProject project =
+ let result = ExecProcess(fun info ->
+ info.FileName <- "dotnet"
+ info.WorkingDirectory <- (Directory.GetParent project).FullName
+ info.Arguments <- (sprintf "xunit -f net452 -c Release -nobuild -parallel none -teamcity -xml %s_xunit.xml" (outputTests @@ fileNameWithoutExt project))) (TimeSpan.FromMinutes 30.)
+
+ ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.DontFailBuild result
-//--------------------------------------------------------------------------------
-// Tests targets
-//--------------------------------------------------------------------------------
+ // dotnet process will be killed by ExecProcess (or throw if can't) '
+ // but per https://github.com/xunit/xunit/issues/1338 xunit.console may not
+ killProcess "xunit.console"
+ killProcess "dotnet"
-//--------------------------------------------------------------------------------
-// Filter out assemblies which can't run on Linux, Mono, .NET Core, etc...
-
-open Fake.EnvironmentHelper
-let filterPlatformSpecificAssemblies (assembly:string) =
- match assembly with
- | assembly when (assembly.Contains("Sqlite") && isMono) -> false
- | assembly when (assembly.Contains(".API") && isMono) -> false
- | assembly when (assembly.Contains("Akka.Remote.TestKit.Tests") && isMono) -> false
- | assembly when (assembly.Contains("Akka.Persistence.TestKit.Tests") && isMono) -> false
- | assembly when (assembly.Contains("Akka.Streams.Tests.TCK") && isMono) -> false
- | _ -> true
+ CreateDir outputTests
+ projects |> Seq.iter (runSingleProject)
-//--------------------------------------------------------------------------------
-// Clean test output
+)
-Target "CleanTests" <| fun _ ->
- DeleteDir testOutput
-//--------------------------------------------------------------------------------
-// Run tests
-
-open Fake.Testing
-Target "RunTests" <| fun _ ->
- let xunitTestAssemblies = Seq.filter filterPlatformSpecificAssemblies (
- !! "src/**/bin/Release/*.Tests.dll"
- // Akka.Streams.Tests is referencing Akka.Streams.TestKit.Tests
- -- "src/**/Akka.Streams.Tests/bin/Release/Akka.Streams.TestKit.Tests.dll"
- // Akka.Streams.Tests.Performance is referencing Akka.Streams.Tests and Akka.Streams.TestKit.Tests
- -- "src/**/Akka.Streams.Tests.Performance/bin/Release/*.Tests.dll")
-
- let nunitTestAssemblies = Seq.filter filterPlatformSpecificAssemblies (!! "src/**/bin/Release/Akka.Streams.Tests.TCK.dll")
-
- // Debug output
- xunitTestAssemblies |> Seq.iter (printfn "Executing: %s")
-
- mkdir testOutput
-
- let xunitToolPath = findToolInSubPath "xunit.console.exe" "src/packages/FAKE/xunit.runner.console*/tools"
- let nunitToolPath = findToolInSubPath "nunit3-console.exe" "src/packages/FAKE/NUnit.ConsoleRunner/tools"
-
- printfn "Using XUnit runner: %s" xunitToolPath
- let runSingleAssembly assembly =
- let assemblyName = Path.GetFileNameWithoutExtension(assembly)
- xUnit2
- (fun p -> { p with XmlOutputPath = Some (testOutput @@ (assemblyName + "_xunit.xml")); HtmlOutputPath = Some (testOutput @@ (assemblyName + "_xunit.html")); ToolPath = xunitToolPath; TimeOut = System.TimeSpan.FromMinutes 30.0; Parallel = ParallelMode.NoParallelization; NoAppDomain = true; ForceTeamCity = true; })
- (Seq.singleton assembly)
-
- xunitTestAssemblies |> Seq.iter (runSingleAssembly)
-
- let runNunitSingleAssembly assembly =
- let assemblyName = Path.GetFileNameWithoutExtension(assembly)
- NUnit3
- (fun p -> { p with ToolPath = nunitToolPath; WorkingDir = testOutput; TeamCity = true;})
- (Seq.singleton assembly)
+Target "RunTestsNetCore" (fun _ ->
+ ActivateFinalTarget "KillCreatedProcesses"
+ let projects =
+ match getBuildParamOrDefault "incremental" "" with
+ | "true" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalUnitTests() |> Seq.map (fun x -> printfn "\t%s" x; x)
+ | "experimental" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalUnitTests() |> Seq.iter log
+ getUnitTestProjects()
+ | _ -> log "All test projects will be run..."
+ getUnitTestProjects()
+
+ let runSingleProject project =
+ let result = ExecProcess(fun info ->
+ info.FileName <- "dotnet"
+ info.WorkingDirectory <- (Directory.GetParent project).FullName
+ info.Arguments <- (sprintf "xunit -f netcoreapp1.1 -c Release -parallel none -teamcity -xml %s_xunit_netcore.xml" (outputTests @@ fileNameWithoutExt project))) (TimeSpan.FromMinutes 30.)
- printfn "Using NUnit runner: %s" nunitToolPath
- nunitTestAssemblies |> Seq.iter (runNunitSingleAssembly)
+ ResultHandling.failBuildIfXUnitReportedError TestRunnerErrorLevel.DontFailBuild result
+ // dotnet process will be killed by FAKE.ExecProcess (or throw if can't)
+ // but per https://github.com/xunit/xunit/issues/1338 xunit.console may not be killed
+ killProcess "xunit.console"
+ killProcess "dotnet"
-(* Debug helper for troubleshooting an issue we had when we were running multi-node tests multiple times *)
-Target "PrintMultiNodeTests" <| fun _ ->
- let testSearchPath =
- let assemblyFilter = getBuildParamOrDefault "spec-assembly" String.Empty
- sprintf "src/**/bin/Release/*%s*.Tests.MultiNode.dll" assemblyFilter
- (!! testSearchPath) |> Seq.iter (printfn "%s")
-
+ CreateDir outputTests
+ projects |> Seq.iter (runSingleProject)
+)
+Target "MultiNodeTests" (fun _ ->
+ ActivateFinalTarget "KillCreatedProcesses"
+ let multiNodeTestPath = findToolInSubPath "Akka.MultiNodeTestRunner.exe" (currentDirectory @@ "src" @@ "core" @@ "Akka.MultiNodeTestRunner" @@ "bin" @@ "Release" @@ "net452")
-Target "MultiNodeTests" <| fun _ ->
- mkdir testOutput
- let multiNodeTestPath = findToolInSubPath "Akka.MultiNodeTestRunner.exe" (currentDirectory @@ "bin" @@ "core" @@ "Akka.MultiNodeTestRunner*")
- let multiNodeTestAssemblies = !! "src/**/bin/Release/Akka.Remote.Tests.MultiNode.dll" ++
- "src/**/bin/Release/Akka.Cluster.Tests.MultiNode.dll" ++
- "src/**/bin/Release/Akka.Cluster.Tools.Tests.MultiNode.dll" ++
- "src/**/bin/Release/Akka.Cluster.Sharding.Tests.MultiNode.dll" ++
- "src/**/bin/Release/Akka.DistributedData.Tests.MultiNode.dll"
+ let multiNodeTestAssemblies =
+ match getBuildParamOrDefault "incremental" "" with
+ | "true" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalMNTRTests() |> Seq.map (fun x -> printfn "\t%s" x; x)
+ | "experimental" -> log "The following MNTR specs would be run under Incremental Test config..."
+ getIncrementalMNTRTests() |> Seq.iter log
+ getAllMntrTestAssemblies()
+ | _ -> log "All test projects will be run"
+ getAllMntrTestAssemblies()
printfn "Using MultiNodeTestRunner: %s" multiNodeTestPath
let runMultiNodeSpec assembly =
let spec = getBuildParam "spec"
- let args = new StringBuilder()
+ let args = StringBuilder()
|> append assembly
+ |> append "-Dmultinode.teamcity=true"
|> append "-Dmultinode.enable-filesink=on"
- |> append (sprintf "-Dmultinode.output-directory=\"%s\"" testOutput)
+ |> append (sprintf "-Dmultinode.output-directory=\"%s\"" outputMultiNode)
|> appendIfNotNullOrEmpty spec "-Dmultinode.spec="
|> toText
@@ -334,22 +199,68 @@ Target "MultiNodeTests" <| fun _ ->
if result <> 0 then failwithf "MultiNodeTestRunner failed. %s %s" multiNodeTestPath args
multiNodeTestAssemblies |> Seq.iter (runMultiNodeSpec)
+)
+
+Target "MultiNodeTestsNetCore" (fun _ ->
+ ActivateFinalTarget "KillCreatedProcesses"
+ let multiNodeTestPath = findToolInSubPath "Akka.MultiNodeTestRunner.dll" (currentDirectory @@ "src" @@ "core" @@ "Akka.MultiNodeTestRunner" @@ "bin" @@ "Release" @@ "netcoreapp1.1" @@ "win7-x64" @@ "publish")
+
+ let multiNodeTestAssemblies =
+ match getBuildParamOrDefault "incremental" "" with
+ | "true" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalNetCoreMNTRTests() |> Seq.map (fun x -> printfn "\t%s" x; x)
+ | "experimental" -> log "The following MNTR specs would be run under Incremental Test config..."
+ getIncrementalNetCoreMNTRTests() |> Seq.iter log
+ getAllMntrTestNetCoreAssemblies()
+ | _ -> log "All test projects will be run"
+ getAllMntrTestNetCoreAssemblies()
+
+ printfn "Using MultiNodeTestRunner: %s" multiNodeTestPath
+
+ let runMultiNodeSpec assembly =
+ match assembly with
+ | null -> ()
+ | _ ->
+ let spec = getBuildParam "spec"
+
+ let args = StringBuilder()
+ |> append multiNodeTestPath
+ |> append assembly
+ |> append "-Dmultinode.teamcity=true"
+ |> append "-Dmultinode.enable-filesink=on"
+ |> append (sprintf "-Dmultinode.output-directory=\"%s\"" outputMultiNode)
+ |> append "-Dmultinode.platform=netcore"
+ |> appendIfNotNullOrEmpty spec "-Dmultinode.spec="
+ |> toText
+
+ let result = ExecProcess(fun info ->
+ info.FileName <- "dotnet"
+ info.WorkingDirectory <- (Path.GetDirectoryName (FullName multiNodeTestPath))
+ info.Arguments <- args) (System.TimeSpan.FromMinutes 60.0) (* This is a VERY long running task. *)
+ if result <> 0 then failwithf "MultiNodeTestRunner failed. %s %s" multiNodeTestPath args
+
+ multiNodeTestAssemblies |> Seq.iter (runMultiNodeSpec)
+)
-//--------------------------------------------------------------------------------
-// NBench targets
-//--------------------------------------------------------------------------------
Target "NBench" <| fun _ ->
- let testSearchPath =
- let assemblyFilter = getBuildParamOrDefault "spec-assembly" String.Empty
- sprintf "src/**/bin/Release/*%s*.Tests.Performance.dll" assemblyFilter
+ ActivateFinalTarget "KillCreatedProcesses"
+ CleanDir outputPerfTests
- mkdir perfOutput
- let nbenchTestPath = findToolInSubPath "NBench.Runner.exe" "src/packges/NBench.Runner*"
- let nbenchTestAssemblies = Seq.filter filterPlatformSpecificAssemblies (!! testSearchPath)
+ let nbenchTestPath = findToolInSubPath "NBench.Runner.exe" (toolsDir @@ "NBench.Runner*")
printfn "Using NBench.Runner: %s" nbenchTestPath
+ let nbenchTestAssemblies =
+ match getBuildParamOrDefault "incremental" "" with
+ | "true" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalPerfTests() |> Seq.map (fun x -> printfn "\t%s" x; x)
+ | "experimental" -> log "The following test projects would be run under Incremental Test config..."
+ getIncrementalPerfTests() |> Seq.iter log
+ getAllPerfTestAssemblies()
+ | _ -> getAllPerfTestAssemblies()
+
let runNBench assembly =
- let spec = getBuildParam "spec"
+ let includes = getBuildParam "include"
+ let excludes = getBuildParam "exclude"
let teamcityStr = (getBuildParam "teamcity")
let enableTeamCity =
match teamcityStr with
@@ -357,12 +268,14 @@ Target "NBench" <| fun _ ->
| "" -> false
| _ -> bool.Parse teamcityStr
- let args = new StringBuilder()
+ let args = StringBuilder()
|> append assembly
- |> append (sprintf "output-directory=\"%s\"" perfOutput)
+ |> append (sprintf "output-directory=\"%s\"" outputPerfTests)
|> append (sprintf "concurrent=\"%b\"" true)
|> append (sprintf "trace=\"%b\"" true)
|> append (sprintf "teamcity=\"%b\"" enableTeamCity)
+ |> appendIfNotNullOrEmpty includes "include="
+ |> appendIfNotNullOrEmpty excludes "include="
|> toText
let result = ExecProcess(fun info ->
@@ -371,202 +284,209 @@ Target "NBench" <| fun _ ->
info.Arguments <- args) (System.TimeSpan.FromMinutes 45.0) (* Reasonably long-running task. *)
if result <> 0 then failwithf "NBench.Runner failed. %s %s" nbenchTestPath args
- nbenchTestAssemblies |> Seq.iter (runNBench)
-
-//--------------------------------------------------------------------------------
-// Clean NBench output
-Target "CleanPerf" <| fun _ ->
- DeleteDir perfOutput
-
+ nbenchTestAssemblies |> Seq.iter runNBench
//--------------------------------------------------------------------------------
// Nuget targets
//--------------------------------------------------------------------------------
-module Nuget =
- // add Akka dependency for other projects
- let getAkkaDependency project =
- match project with
- | "Akka" -> []
- | "Akka.Cluster" -> ["Akka.Remote", release.NugetVersion]
- | "Akka.Cluster.TestKit" -> ["Akka.Remote.TestKit", release.NugetVersion; "Akka.Cluster", release.NugetVersion]
- | "Akka.Cluster.Sharding" -> ["Akka.Cluster.Tools", release.NugetVersion; "Akka.Persistence", preReleaseVersion]
- | "Akka.Cluster.Tools" -> ["Akka.Cluster", release.NugetVersion]
- | "Akka.MultiNodeTestRunner" -> [] // all binaries for the multinodetest runner have to be included locally
- | "Akka.Persistence.TestKit" -> ["Akka.Persistence", preReleaseVersion; "Akka.TestKit.Xunit2", release.NugetVersion]
- | "Akka.Persistence.Query" -> ["Akka.Persistence", preReleaseVersion; "Akka.Streams", release.NugetVersion]
- | "Akka.Persistence.Query.Sql" -> ["Akka.Persistence.Query", preReleaseVersion; "Akka.Persistence.Sql.Common", preReleaseVersion]
- | "Akka.Persistence.Sql.TestKit" -> ["Akka.Persistence.Query.Sql", preReleaseVersion; "Akka.Persistence.TestKit", preReleaseVersion; "Akka.Streams.TestKit", release.NugetVersion]
- | persistence when (persistence.Contains("Sql") && not (persistence.Equals("Akka.Persistence.Sql.Common"))) -> ["Akka.Persistence.Sql.Common", preReleaseVersion]
- | persistence when (persistence.StartsWith("Akka.Persistence.")) -> ["Akka.Persistence", preReleaseVersion]
- | "Akka.DI.TestKit" -> ["Akka.DI.Core", release.NugetVersion; "Akka.TestKit.Xunit2", release.NugetVersion]
- | testkit when testkit.StartsWith("Akka.TestKit.") -> ["Akka.TestKit", release.NugetVersion]
- | "Akka.Remote.TestKit" -> ["Akka.Remote", release.NugetVersion; "Akka.TestKit.Xunit2", release.NugetVersion;]
- | "Akka.Streams" -> ["Akka", release.NugetVersion]
- | "Akka.Streams.TestKit" -> ["Akka.Streams", release.NugetVersion; "Akka.TestKit", release.NugetVersion]
- | _ -> ["Akka", release.NugetVersion]
-
- // used to add -pre suffix to pre-release packages
- let getProjectVersion project =
- match project with
- | "Akka.Serialization.Wire" -> preReleaseVersion
- | "Akka.Serialization.Hyperion" -> preReleaseVersion
- | "Akka.Cluster.Sharding" -> preReleaseVersion
- | persistence when persistence.StartsWith("Akka.Persistence") -> preReleaseVersion
- | "Akka.DistributedData" -> preReleaseVersion
- | "Akka.DistributedData.LightningDB" -> preReleaseVersion
- | _ -> release.NugetVersion
-
-open Nuget
-
-//--------------------------------------------------------------------------------
-// Clean nuget directory
-
-Target "CleanNuget" <| fun _ ->
- CleanDir nugetDir
+let overrideVersionSuffix (project:string) =
+ match project with
+ | p when p.Contains("Akka.Serialization.Wire") -> preReleaseVersionSuffix
+ | p when p.Contains("Akka.Serialization.Hyperion") -> preReleaseVersionSuffix
+ | p when p.Contains("Akka.Cluster.Sharding") -> preReleaseVersionSuffix
+ | p when p.Contains("Akka.DistributedData") -> preReleaseVersionSuffix
+ | p when p.Contains("Akka.DistributedData.LightningDB") -> preReleaseVersionSuffix
+ | _ -> versionSuffix
+
+Target "CreateNuget" (fun _ ->
+ let projects = !! "src/**/Akka.csproj"
+ ++ "src/**/Akka.Cluster.csproj"
+ ++ "src/**/Akka.Cluster.TestKit.csproj"
+ ++ "src/**/Akka.Cluster.Tools.csproj"
+ ++ "src/**/Akka.Cluster.Sharding.csproj"
+ ++ "src/**/Akka.DistributedData.csproj"
+ ++ "src/**/Akka.DistributedData.LightningDB.csproj"
+ ++ "src/**/Akka.Persistence.csproj"
+ ++ "src/**/Akka.Persistence.Query.csproj"
+ ++ "src/**/Akka.Persistence.TestKit.csproj"
+ ++ "src/**/Akka.Persistence.Query.Sql.csproj"
+ ++ "src/**/Akka.Persistence.Sql.Common.csproj"
+ ++ "src/**/Akka.Persistence.Sql.TestKit.csproj"
+ ++ "src/**/Akka.Persistence.Sqlite.csproj"
+ ++ "src/**/Akka.Remote.csproj"
+ ++ "src/**/Akka.Remote.TestKit.csproj"
+ ++ "src/**/Akka.Streams.csproj"
+ ++ "src/**/Akka.Streams.TestKit.csproj"
+ ++ "src/**/Akka.TestKit.csproj"
+ ++ "src/**/Akka.TestKit.Xunit2.csproj"
+ ++ "src/**/Akka.DI.Core.csproj"
+ ++ "src/**/Akka.DI.TestKit.csproj"
+ ++ "src/**/Akka.Serialization.Hyperion.csproj"
+ ++ "src/**/Akka.Serialization.TestKit.csproj"
+ ++ "src/**/Akka.Remote.Transport.Helios.csproj"
+
+ let runSingleProject project =
+ DotNetCli.Pack
+ (fun p ->
+ { p with
+ Project = project
+ Configuration = configuration
+ AdditionalArgs = ["--include-symbols"]
+ VersionSuffix = overrideVersionSuffix project
+ OutputPath = outputNuGet })
+
+ projects |> Seq.iter (runSingleProject)
+)
+open Fake.TemplateHelper
+Target "PublishMntr" (fun _ ->
+ let executableProjects = !! "./src/**/Akka.MultiNodeTestRunner.csproj"
+
+ // Windows .NET 4.5.2
+ executableProjects |> Seq.iter (fun project ->
+ DotNetCli.Restore
+ (fun p ->
+ { p with
+ Project = project
+ AdditionalArgs = ["-r win7-x64"; sprintf "/p:VersionSuffix=%s" versionSuffix] })
+ )
+
+ // Windows .NET 4.5.2
+ executableProjects |> Seq.iter (fun project ->
+ DotNetCli.Publish
+ (fun p ->
+ { p with
+ Project = project
+ Configuration = configuration
+ Runtime = "win7-x64"
+ Framework = "net452"
+ VersionSuffix = versionSuffix }))
+
+ // Windows .NET Core
+ executableProjects |> Seq.iter (fun project ->
+ DotNetCli.Publish
+ (fun p ->
+ { p with
+ Project = project
+ Configuration = configuration
+ Runtime = "win7-x64"
+ Framework = "netcoreapp1.1"
+ VersionSuffix = versionSuffix }))
+)
-//--------------------------------------------------------------------------------
-// Pack nuget for all projects
-// Publish to nuget.org if nugetkey is specified
-
-let createNugetPackages _ =
- let removeDir dir =
- let del _ =
- DeleteDir dir
- not (directoryExists dir)
- runWithRetries del 3 |> ignore
-
- let getReleaseFiles project releaseDir =
- match project with
- | "Akka.MultiNodeTestRunner" -> // because the MNTR is an exe, all of its dlls have to be available in the same working directory when it executes
- !! (releaseDir @@ "*.dll")
- ++ (releaseDir @@ "*.exe")
- ++ (releaseDir @@ "*.pdb")
- ++ (releaseDir @@ "*.xml")
- | _ ->
- !! (releaseDir @@ project + ".dll")
- ++ (releaseDir @@ project + ".exe")
- ++ (releaseDir @@ project + ".pdb")
- ++ (releaseDir @@ project + ".xml")
-
- let getExternalPackages project packagesFile =
- match project with
- | "Akka.MultiNodeTestRunner" -> [] // because the MNTR is an exe, all of its dlls have to be available in the same working directory when it executes
- | _ -> if (fileExists packagesFile) then (getDependencies packagesFile) else []
-
- ensureDirectory nugetDir
- for nuspec in !! "src/**/*.nuspec" do
- printfn "Creating nuget packages for %s" nuspec
-
- CleanDir workingDir
-
- let project = Path.GetFileNameWithoutExtension nuspec
- let projectDir = Path.GetDirectoryName nuspec
- let projectFile = (!! (projectDir @@ project + ".*sproj")) |> Seq.head
- let releaseDir = projectDir @@ @"bin\Release"
- let packages = projectDir @@ "packages.config"
- let packageDependencies = getExternalPackages project packages
- let dependencies = packageDependencies @ getAkkaDependency project
- let releaseVersion = getProjectVersion project
-
- let pack outputDir symbolPackage =
- NuGetHelper.NuGet
- (fun p ->
- { p with
- Description = description
- Authors = authors
- Copyright = copyright
- Project = project
- Properties = ["Configuration", "Release"]
- ReleaseNotes = release.Notes |> String.concat "\n"
- Version = releaseVersion
- Tags = tags |> String.concat " "
- OutputPath = outputDir
- WorkingDir = workingDir
- SymbolPackage = symbolPackage
- Dependencies = dependencies })
- nuspec
-
- // Copy dll, pdb and xml to libdir = workingDir/lib/net45/
- ensureDirectory libDir
- getReleaseFiles project releaseDir
- |> CopyFiles libDir
-
- // Copy all src-files (.cs and .fs files) to workingDir/src
- let nugetSrcDir = workingDir @@ @"src/"
- // CreateDir nugetSrcDir
-
- let isCs = hasExt ".cs"
- let isFs = hasExt ".fs"
- let isAssemblyInfo f = (filename f).Contains("AssemblyInfo")
- let isSrc f = (isCs f || isFs f) && not (isAssemblyInfo f)
- CopyDir nugetSrcDir projectDir isSrc
-
- //Remove workingDir/src/obj and workingDir/src/bin
- removeDir (nugetSrcDir @@ "obj")
- removeDir (nugetSrcDir @@ "bin")
+Target "CreateMntrNuget" (fun _ ->
+ // uses the template file to create a temporary .nuspec file with the correct version
+ CopyFile "./src/core/Akka.MultiNodeTestRunner/Akka.MultiNodeTestRunner.nuspec" "./src/core/Akka.MultiNodeTestRunner/Akka.MultiNodeTestRunner.nuspec.template"
+ let commonPropsVersionPrefix = XMLRead true "./src/common.props" "" "" "//Project/PropertyGroup/VersionPrefix" |> Seq.head
+ let versionReplacement = List.ofSeq [ "@version@", commonPropsVersionPrefix + (if (not (versionSuffix = "")) then ("-" + versionSuffix) else "") ]
+ TemplateHelper.processTemplates versionReplacement [ "./src/core/Akka.MultiNodeTestRunner/Akka.MultiNodeTestRunner.nuspec" ]
- // Create both normal nuget package and symbols nuget package.
- // Uses the files we copied to workingDir and outputs to nugetdir
- pack nugetDir NugetSymbolPackage.Nuspec
-
- removeDir workingDir
-
-let publishNugetPackages _ =
- let rec publishPackage url accessKey trialsLeft packageFile =
- let tracing = enableProcessTracing
- enableProcessTracing <- false
- let args p =
- match p with
- | (pack, key, "") -> sprintf "push \"%s\" %s" pack key
- | (pack, key, url) -> sprintf "push \"%s\" %s -source %s" pack key url
-
- tracefn "Pushing %s Attempts left: %d" (FullName packageFile) trialsLeft
- try
- let result = ExecProcess (fun info ->
- info.FileName <- nugetExe
- info.WorkingDirectory <- (Path.GetDirectoryName (FullName packageFile))
- info.Arguments <- args (packageFile, accessKey,url)) (System.TimeSpan.FromMinutes 1.0)
- enableProcessTracing <- tracing
- if result <> 0 then failwithf "Error during NuGet symbol push. %s %s" nugetExe (args (packageFile, "key omitted",url))
- with exn ->
- if (trialsLeft > 0) then (publishPackage url accessKey (trialsLeft-1) packageFile)
- else raise exn
- let shouldPushNugetPackages = hasBuildParam "nugetkey"
- let shouldPushSymbolsPackages = (hasBuildParam "symbolspublishurl") && (hasBuildParam "symbolskey")
+ let executableProjects = !! "./src/**/Akka.MultiNodeTestRunner.csproj"
- if (shouldPushNugetPackages || shouldPushSymbolsPackages) then
- printfn "Pushing nuget packages"
- if shouldPushNugetPackages then
- let normalPackages=
- !! (nugetDir @@ "*.nupkg")
- -- (nugetDir @@ "*.symbols.nupkg") |> Seq.sortBy(fun x -> x.ToLower())
- for package in normalPackages do
- try
- publishPackage (getBuildParamOrDefault "nugetpublishurl" "") (getBuildParam "nugetkey") 3 package
- with exn ->
- printfn "%s" exn.Message
-
- if shouldPushSymbolsPackages then
- let symbolPackages= !! (nugetDir @@ "*.symbols.nupkg") |> Seq.sortBy(fun x -> x.ToLower())
- for package in symbolPackages do
- try
- publishPackage (getBuildParam "symbolspublishurl") (getBuildParam "symbolskey") 3 package
- with exn ->
- printfn "%s" exn.Message
-
+ executableProjects |> Seq.iter (fun project ->
+ DotNetCli.Pack
+ (fun p ->
+ { p with
+ Project = project
+ Configuration = configuration
+ AdditionalArgs = ["--include-symbols"]
+ VersionSuffix = overrideVersionSuffix project
+ OutputPath = outputNuGet } )
+ )
+
+ DeleteFile "./src/core/Akka.MultiNodeTestRunner/Akka.MultiNodeTestRunner.nuspec"
+)
-Target "Nuget" <| fun _ ->
- createNugetPackages()
- publishNugetPackages()
+Target "PublishNuget" (fun _ ->
+ let projects = !! "./bin/nuget/*.nupkg" -- "./bin/nuget/*.symbols.nupkg"
+ let apiKey = getBuildParamOrDefault "nugetkey" ""
+ let source = getBuildParamOrDefault "nugetpublishurl" ""
+ let symbolSource = getBuildParamOrDefault "symbolspublishurl" ""
+ let shouldPublishSymbolsPackages = not (symbolSource = "")
+
+ if (not (source = "") && not (apiKey = "") && shouldPublishSymbolsPackages) then
+ let runSingleProject project =
+ DotNetCli.RunCommand
+ (fun p ->
+ { p with
+ TimeOut = TimeSpan.FromMinutes 10. })
+ (sprintf "nuget push %s --api-key %s --source %s --symbol-source %s" project apiKey source symbolSource)
+
+ projects |> Seq.iter (runSingleProject)
+ else if (not (source = "") && not (apiKey = "") && not shouldPublishSymbolsPackages) then
+ let runSingleProject project =
+ DotNetCli.RunCommand
+ (fun p ->
+ { p with
+ TimeOut = TimeSpan.FromMinutes 10. })
+ (sprintf "nuget push %s --api-key %s --source %s" project apiKey source)
+
+ projects |> Seq.iter (runSingleProject)
+)
-Target "CreateNuget" <| fun _ ->
- createNugetPackages()
+//--------------------------------------------------------------------------------
+// Serialization
+//--------------------------------------------------------------------------------
+Target "Protobuf" <| fun _ ->
+ let protocPath = findToolInSubPath "protoc.exe" "src/packages/Google.Protobuf.Tools/tools/windows_x64"
+
+ let protoFiles = [
+ ("WireFormats.proto", "/src/core/Akka.Remote/Serialization/Proto/");
+ ("ContainerFormats.proto", "/src/core/Akka.Remote/Serialization/Proto/");
+ ("ContainerFormats.proto", "/src/core/Akka.Remote/Serialization/Proto/");
+ ("SystemMessageFormats.proto", "/src/core/Akka.Remote/Serialization/Proto/");
+ ("ClusterMessages.proto", "/src/core/Akka.Cluster/Serialization/Proto/");
+ ("ClusterClientMessages.proto", "/src/contrib/cluster/Akka.Cluster.Tools/Client/Serialization/Proto/");
+ ("DistributedPubSubMessages.proto", "/src/contrib/cluster/Akka.Cluster.Tools/PublishSubscribe/Serialization/Proto/");
+ ("ClusterShardingMessages.proto", "/src/contrib/cluster/Akka.Cluster.Sharding/Serialization/Proto/");
+ ("TestConductorProtocol.proto", "/src/core/Akka.Remote.TestKit/Proto/") ]
+
+ printfn "Using proto.exe: %s" protocPath
+
+ let runProtobuf assembly =
+ let protoName, destinationPath = assembly
+ let args = StringBuilder()
+ |> append (sprintf "-I=%s;%s" (__SOURCE_DIRECTORY__ @@ "/src/protobuf/") (__SOURCE_DIRECTORY__ @@ "/src/protobuf/common") )
+ |> append (sprintf "--csharp_out=internal_access:%s" (__SOURCE_DIRECTORY__ @@ destinationPath))
+ |> append "--csharp_opt=file_extension=.g.cs"
+ |> append (__SOURCE_DIRECTORY__ @@ "/src/protobuf" @@ protoName)
+ |> toText
-Target "PublishNuget" <| fun _ ->
- publishNugetPackages()
+ let result = ExecProcess(fun info ->
+ info.FileName <- protocPath
+ info.WorkingDirectory <- (Path.GetDirectoryName (FullName protocPath))
+ info.Arguments <- args) (System.TimeSpan.FromMinutes 45.0) (* Reasonably long-running task. *)
+ if result <> 0 then failwithf "protoc failed. %s %s" protocPath args
+
+ protoFiles |> Seq.iter (runProtobuf)
+//--------------------------------------------------------------------------------
+// Documentation
+//--------------------------------------------------------------------------------
+Target "DocFx" (fun _ ->
+ let docsExamplesSolution = "./docs/examples/DocsExamples.sln"
+ DotNetCli.Restore (fun p -> { p with Project = docsExamplesSolution })
+ DotNetCli.Build (fun p -> { p with Project = docsExamplesSolution; Configuration = configuration })
+
+ let docsPath = "./docs"
+
+ DocFx (fun p ->
+ { p with
+ Timeout = TimeSpan.FromMinutes 30.0;
+ WorkingDirectory = docsPath;
+ DocFxJson = docsPath @@ "docfx.json" })
+)
+FinalTarget "KillCreatedProcesses" (fun _ ->
+ log "Killing processes started by FAKE:"
+ startedProcesses |> Seq.iter (fun (pid, _) -> logfn "%i" pid)
+ killAllCreatedProcesses()
+ log "Killing any remaining dotnet and xunit.console.exe processes:"
+ getProcessesByName "dotnet" |> Seq.iter (fun p -> logfn "pid: %i; name: %s" p.Id p.ProcessName)
+ killProcess "dotnet"
+ getProcessesByName "xunit.console" |> Seq.iter (fun p -> logfn "pid: %i; name: %s" p.Id p.ProcessName)
+ killProcess "xunit.console"
+)
//--------------------------------------------------------------------------------
// Help
@@ -575,38 +495,27 @@ Target "PublishNuget" <| fun _ ->
Target "Help" <| fun _ ->
List.iter printfn [
"usage:"
- "build [target]"
+ "/build [target]"
""
" Targets for building:"
" * Build Builds"
" * Nuget Create and optionally publish nugets packages"
" * RunTests Runs tests"
- " * MultiNodeTests Runs the slower multiple node specifications"
" * All Builds, run tests, creates and optionally publish nuget packages"
""
" Other Targets"
" * Help Display this help"
- " * HelpNuget Display help about creating and pushing nuget packages"
- " * HelpDocs Display help about creating and pushing API docs"
- " * HelpMultiNodeTests Display help about running the multiple node specifications"
""]
Target "HelpNuget" <| fun _ ->
List.iter printfn [
"usage: "
"build Nuget [nugetkey= [nugetpublishurl=]] "
- " [symbolskey= symbolspublishurl=] "
- " [nugetprerelease=]"
- ""
- "Arguments for Nuget target:"
- " nugetprerelease= Creates a pre-release package."
- " The version will be version-prefix"
- " Example: nugetprerelease=dev =>"
- " 0.6.3-dev1408191917"
+ " [symbolspublishurl=] "
""
"In order to publish a nuget package, keys must be specified."
"If a key is not specified the nuget packages will only be created on disk"
- "After a build you can find them in bin/nuget"
+ "After a build you can find them in build/nuget"
""
"For pushing nuget packages to nuget.org and symbols to symbolsource.org"
"you need to specify nugetkey="
@@ -619,119 +528,42 @@ Target "HelpNuget" <| fun _ ->
" symbolskey= symbolspublishurl= "
""
"Examples:"
- " build Nuget Build nuget packages to the bin/nuget folder"
+ " build Nuget Build nuget packages to the build/nuget folder"
""
- " build Nuget nugetprerelease=dev Build pre-release nuget packages"
+ " build Nuget versionsuffix=beta1 Build nuget packages with the custom version suffix"
""
" build Nuget nugetkey=123 Build and publish to nuget.org and symbolsource.org"
""
- " build Nuget nugetprerelease=dev nugetkey=123 nugetpublishurl=http://abc"
- " symbolskey=456 symbolspublishurl=http://xyz"
- " Build and publish pre-release nuget packages to http://abc"
- " and symbols packages to http://xyz"
- ""]
-
-Target "HelpDocs" <| fun _ ->
- List.iter printfn [
- "usage: "
- "build Docs"
- "Just builds the API docs for Akka.NET locally. Does not attempt to publish."
- ""
- "build PublishDocs azureKey= "
- " azureUrl= "
- " [unstable=true]"
- ""
- "Arguments for PublishDocs target:"
- " azureKey= Azure blob storage key."
- " Used to authenticate to the storage account."
- ""
- " azureUrl= Base URL for Azure storage container."
- " FAKE will automatically set container"
- " names based on build parameters."
- ""
- " [unstable=true] Indicates that we'll publish to an Azure"
- " container named 'unstable'. If this param"
- " is not present we'll publish to containers"
- " 'stable' and the 'release.version'"
- ""
- "In order to publish documentation all of these values must be provided."
- "Examples:"
- " build PublishDocs azureKey=1s9HSAHA+..."
- " azureUrl=http://fooaccount.blob.core.windows.net/docs"
- " Build and publish docs to http://fooaccount.blob.core.windows.net/docs/stable"
- " and http://fooaccount.blob.core.windows.net/docs/{release.version}"
- ""
- " build PublishDocs azureKey=1s9HSAHA+..."
- " azureUrl=http://fooaccount.blob.core.windows.net/docs"
- " unstable=true"
- " Build and publish docs to http://fooaccount.blob.core.windows.net/docs/unstable"
- ""]
-
-
-Target "HelpSourceBrowserDocs" <| fun _ ->
- List.iter printfn [
- "usage: "
- "build GenerateSourceBrowser"
- "Just generates the SourceBrowser docs for Akka.NET locally. Does not attempt to publish."
- ""
- "build PublishSourceBrowser publishsettings= "
- ""
- "Arguments for PublishSourceBrowser target:"
- " publishsettings= Publish settings file."
- ""
- "In order to publish documentation all of these values must be provided."
+ " build Nuget nugetprerelease=dev nugetkey=123 nugetpublishurl=http://abcsymbolspublishurl=http://xyz"
""]
-
-Target "HelpMultiNodeTests" <| fun _ ->
- List.iter printfn [
- "usage: "
- "build MultiNodeTests [spec-assembly=]"
- "Just runs the MultiNodeTests. Does not build the projects."
- ""
- "Arguments for MultiNodeTests target:"
- " [spec-assembly=] Restrict which spec projects are run."
- ""
- " Alters the discovery filter to enable restricting which specs are run."
- " If not supplied the filter used is '*.Tests.Multinode.Dll'"
- " When supplied this is altered to '**.Tests.Multinode.Dll'"
- ""]
//--------------------------------------------------------------------------------
// Target dependencies
//--------------------------------------------------------------------------------
+Target "BuildRelease" DoNothing
+Target "All" DoNothing
+Target "Nuget" DoNothing
+
// build dependencies
-"Clean" ==> "AssemblyInfo" ==> "RestorePackages" ==> "Build" ==> "CopyOutput" ==> "BuildRelease"
+"Clean" ==> "RestorePackages" ==> "Build" ==> "PublishMntr" ==> "BuildRelease"
// tests dependencies
-"CleanTests" ==> "RunTests"
-"CleanTests" ==> "MultiNodeTests"
-
-// NBench dependencies
-"CleanPerf" ==> "NBench"
+// "RunTests" step doesn't require Clean ==> "RestorePackages" step
+"Clean" ==> "RestorePackages" ==> "RunTestsNetCore"
// nuget dependencies
-"CleanNuget" ==> "CreateNuget"
-"CleanNuget" ==> "BuildRelease" ==> "Nuget"
+"Clean" ==> "RestorePackages" ==> "Build" ==> "PublishMntr" ==> "CreateMntrNuget" ==> "CreateNuget"
+"CreateNuget" ==> "PublishNuget" ==> "Nuget"
-//docs dependencies
-"BuildRelease" ==> "Docs" ==> "AzureDocsDeploy" ==> "PublishDocs"
+// docs
+"BuildRelease" ==> "Docfx"
-// SourceBrowser dependencies
-"BuildRelease" ==> "GenerateSourceBrowser" ==> "PublishSourceBrowser"
-
-Target "All" DoNothing
+// all
"BuildRelease" ==> "All"
"RunTests" ==> "All"
+"RunTestsNetCore" ==> "All"
"MultiNodeTests" ==> "All"
"NBench" ==> "All"
-"Nuget" ==> "All"
-
-Target "AllTests" DoNothing //used for Mono builds, due to Mono 4.0 bug with FAKE / NuGet https://github.com/fsharp/fsharp/issues/427
-"BuildRelease" ==> "AllTests"
-"RunTests" ==> "AllTests"
-"MultiNodeTests" ==> "AllTests"
-
-Target "RunTestsNetCore" DoNothing
RunTargetOrDefault "Help"
diff --git a/build.ps1 b/build.ps1
new file mode 100644
index 00000000000..d3c5a772a0c
--- /dev/null
+++ b/build.ps1
@@ -0,0 +1,176 @@
+<#
+.SYNOPSIS
+This is a Powershell script to bootstrap a Fake build.
+.DESCRIPTION
+This Powershell script will download NuGet if missing, restore NuGet tools (including Fake)
+and execute your Fake build script with the parameters you provide.
+.PARAMETER Target
+The build script target to run.
+.PARAMETER Configuration
+The build configuration to use.
+.PARAMETER Verbosity
+Specifies the amount of information to be displayed.
+.PARAMETER WhatIf
+Performs a dry run of the build script.
+No tasks will be executed.
+.PARAMETER ScriptArgs
+Remaining arguments are added here.
+#>
+
+[CmdletBinding()]
+Param(
+ [string]$Target = "Default",
+ [ValidateSet("Release", "Debug")]
+ [string]$Configuration = "Release",
+ [ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")]
+ [string]$Verbosity = "Verbose",
+ [switch]$WhatIf,
+ [Parameter(Position=0,Mandatory=$false,ValueFromRemainingArguments=$true)]
+ [string[]]$ScriptArgs
+)
+
+$FakeVersion = "4.61.2"
+$NBenchVersion = "1.0.1"
+$DotNetChannel = "preview";
+$DotNetVersion = "1.0.4";
+$DotNetInstallerUri = "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1";
+$NugetVersion = "4.1.0";
+$NugetUrl = "https://dist.nuget.org/win-x86-commandline/v$NugetVersion/nuget.exe"
+$ProtobufVersion = "3.2.0"
+$DocfxVersion = "2.21.1"
+
+# Make sure tools folder exists
+$PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
+$ToolPath = Join-Path $PSScriptRoot "tools"
+if (!(Test-Path $ToolPath)) {
+ Write-Verbose "Creating tools directory..."
+ New-Item -Path $ToolPath -Type directory | out-null
+}
+
+###########################################################################
+# INSTALL .NET CORE CLI
+###########################################################################
+
+Function Remove-PathVariable([string]$VariableToRemove)
+{
+ $path = [Environment]::GetEnvironmentVariable("PATH", "User")
+ if ($path -ne $null)
+ {
+ $newItems = $path.Split(';', [StringSplitOptions]::RemoveEmptyEntries) | Where-Object { "$($_)" -inotlike $VariableToRemove }
+ [Environment]::SetEnvironmentVariable("PATH", [System.String]::Join(';', $newItems), "User")
+ }
+
+ $path = [Environment]::GetEnvironmentVariable("PATH", "Process")
+ if ($path -ne $null)
+ {
+ $newItems = $path.Split(';', [StringSplitOptions]::RemoveEmptyEntries) | Where-Object { "$($_)" -inotlike $VariableToRemove }
+ [Environment]::SetEnvironmentVariable("PATH", [System.String]::Join(';', $newItems), "Process")
+ }
+}
+
+# Get .NET Core CLI path if installed.
+$FoundDotNetCliVersion = $null;
+if (Get-Command dotnet -ErrorAction SilentlyContinue) {
+ $FoundDotNetCliVersion = dotnet --version;
+ $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
+ $env:DOTNET_CLI_TELEMETRY_OPTOUT=1
+}
+
+if($FoundDotNetCliVersion -ne $DotNetVersion) {
+ $InstallPath = Join-Path $PSScriptRoot ".dotnet"
+ if (!(Test-Path $InstallPath)) {
+ mkdir -Force $InstallPath | Out-Null;
+ }
+ (New-Object System.Net.WebClient).DownloadFile($DotNetInstallerUri, "$InstallPath\dotnet-install.ps1");
+ & $InstallPath\dotnet-install.ps1 -Channel $DotNetChannel -Version $DotNetVersion -InstallDir $InstallPath -Architecture x64;
+
+ Remove-PathVariable "$InstallPath"
+ $env:PATH = "$InstallPath;$env:PATH"
+ $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
+ $env:DOTNET_CLI_TELEMETRY_OPTOUT=1
+}
+
+###########################################################################
+# INSTALL NUGET
+###########################################################################
+
+# Make sure nuget.exe exists.
+$NugetPath = Join-Path $ToolPath "nuget.exe"
+if (!(Test-Path $NugetPath)) {
+ Write-Host "Downloading NuGet.exe..."
+ (New-Object System.Net.WebClient).DownloadFile($NugetUrl, $NugetPath);
+}
+
+###########################################################################
+# INSTALL FAKE
+###########################################################################
+# Make sure Fake has been installed.
+
+$FakeExePath = Join-Path $ToolPath "FAKE/tools/FAKE.exe"
+if (!(Test-Path $FakeExePath)) {
+ Write-Host "Installing Fake..."
+ Invoke-Expression "&`"$NugetPath`" install Fake -ExcludeVersion -Version $FakeVersion -OutputDirectory `"$ToolPath`"" | Out-Null;
+ if ($LASTEXITCODE -ne 0) {
+ Throw "An error occured while restoring Fake from NuGet."
+ }
+}
+
+###########################################################################
+# INSTALL NBench Runner
+###########################################################################
+
+# Make sure NBench Runner has been installed.
+$NBenchDllPath = Join-Path $ToolPath "NBench.Runner/lib/net45/NBench.Runner.exe"
+if (!(Test-Path $NBenchDllPath)) {
+ Write-Host "Installing NBench..."
+ Invoke-Expression "&`"$NugetPath`" install NBench.Runner -ExcludeVersion -Version $NBenchVersion -OutputDirectory `"$ToolPath`"" | Out-Null;
+ if ($LASTEXITCODE -ne 0) {
+ Throw "An error occured while restoring NBench.Runner from NuGet."
+ }
+}
+
+###########################################################################
+# Google.Protobuf.Tools
+###########################################################################
+
+# Make sure Google.Protobuf.Tools has been installed.
+$ProtobufExePath = Join-Path $ToolPath "Google.Protobuf.Tools/tools/windows_x64/protoc.exe"
+if (!(Test-Path $ProtobufExePath)) {
+ Write-Host "Installing Google.Protobuf.Tools..."
+ Invoke-Expression "&`"$NugetPath`" install Google.Protobuf.Tools -ExcludeVersion -Version $ProtobufVersion -OutputDirectory `"$ToolPath`"" | Out-Null;
+ if ($LASTEXITCODE -ne 0) {
+ Throw "An error occured while restoring Google.Protobuf.Tools from NuGet."
+ }
+}
+
+###########################################################################
+# Docfx
+###########################################################################
+
+# Make sure Docfx has been installed.
+$DocfxExePath = Join-Path $ToolPath "docfx.console/tools/docfx.exe"
+if (!(Test-Path $DocfxExePath)) {
+ Write-Host "Installing Docfx..."
+ Invoke-Expression "&`"$NugetPath`" install docfx.console -ExcludeVersion -Version $DocfxVersion -OutputDirectory `"$ToolPath`"" | Out-Null;
+ if ($LASTEXITCODE -ne 0) {
+ Throw "An error occured while restoring docfx.console from NuGet."
+ }
+}
+
+###########################################################################
+# RUN BUILD SCRIPT
+###########################################################################
+
+# Build the argument list.
+$Arguments = @{
+ target=$Target;
+ configuration=$Configuration;
+ verbosity=$Verbosity;
+ dryrun=$WhatIf;
+}.GetEnumerator() | %{"--{0}=`"{1}`"" -f $_.key, $_.value };
+
+# Start Fake
+Write-Host "Running build script..."
+Invoke-Expression "$FakeExePath `"build.fsx`" $ScriptArgs $Arguments"
+
+exit $LASTEXITCODE
\ No newline at end of file
diff --git a/build.sh b/build.sh
index 99a99a75ea6..38a724a9904 100755
--- a/build.sh
+++ b/build.sh
@@ -1,40 +1,99 @@
-#!/bin/bash
-SCRIPT_PATH="${BASH_SOURCE[0]}";
-if ([ -h "${SCRIPT_PATH}" ]) then
- while([ -h "${SCRIPT_PATH}" ]) do SCRIPT_PATH=`readlink "${SCRIPT_PATH}"`; done
-fi
-pushd . > /dev/null
-cd `dirname ${SCRIPT_PATH}` > /dev/null
-SCRIPT_PATH=`pwd`;
-popd > /dev/null
-
-if ! [ -f $SCRIPT_PATH/src/.nuget/nuget.exe ]
- then
- wget "https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe" -P $SCRIPT_PATH/src/.nuget/
+#!/usr/bin/env bash
+##########################################################################
+# This is the Fake bootstrapper script for Linux and OS X.
+##########################################################################
+
+# Define directories.
+SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
+TOOLS_DIR=$SCRIPT_DIR/tools
+NUGET_EXE=$TOOLS_DIR/nuget.exe
+NUGET_URL=https://dist.nuget.org/win-x86-commandline/v4.0.0/nuget.exe
+FAKE_VERSION=4.61.2
+FAKE_EXE=$TOOLS_DIR/FAKE/tools/FAKE.exe
+DOTNET_VERSION=1.0.4
+DOTNET_INSTALLER_URL=https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh
+
+# Define default arguments.
+TARGET="Default"
+CONFIGURATION="Release"
+VERBOSITY="verbose"
+DRYRUN=
+SCRIPT_ARGUMENTS=()
+
+# Parse arguments.
+for i in "$@"; do
+ case $1 in
+ -t|--target) TARGET="$2"; shift ;;
+ -c|--configuration) CONFIGURATION="$2"; shift ;;
+ -v|--verbosity) VERBOSITY="$2"; shift ;;
+ -d|--dryrun) DRYRUN="-dryrun" ;;
+ --) shift; SCRIPT_ARGUMENTS+=("$@"); break ;;
+ *) SCRIPT_ARGUMENTS+=("$1") ;;
+ esac
+ shift
+done
+
+# Make sure the tools folder exist.
+if [ ! -d "$TOOLS_DIR" ]; then
+ mkdir "$TOOLS_DIR"
fi
-SCRIPT_PATH="${BASH_SOURCE[0]}";
-if ([ -h "${SCRIPT_PATH}" ]) then
- while([ -h "${SCRIPT_PATH}" ]) do SCRIPT_PATH=`readlink "${SCRIPT_PATH}"`; done
+###########################################################################
+# INSTALL .NET CORE CLI
+###########################################################################
+
+echo "Installing .NET CLI..."
+if [ ! -d "$SCRIPT_DIR/.dotnet" ]; then
+ mkdir "$SCRIPT_DIR/.dotnet"
fi
-pushd . > /dev/null
-cd `dirname ${SCRIPT_PATH}` > /dev/null
-SCRIPT_PATH=`pwd`;
-popd > /dev/null
+curl -Lsfo "$SCRIPT_DIR/.dotnet/dotnet-install.sh" $DOTNET_INSTALLER_URL
+bash "$SCRIPT_DIR/.dotnet/dotnet-install.sh" --version $DOTNET_VERSION --install-dir .dotnet --no-path
+export PATH="$SCRIPT_DIR/.dotnet":$PATH
+export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
+export DOTNET_CLI_TELEMETRY_OPTOUT=1
+chmod -R 0755 ".dotnet"
+"$SCRIPT_DIR/.dotnet/dotnet" --info
-mono $SCRIPT_PATH/src/.nuget/nuget.exe install FAKE -OutputDirectory $SCRIPT_PATH/src/packages -ExcludeVersion -Version 4.61.3
+###########################################################################
+# INSTALL NUGET
+###########################################################################
-mono $SCRIPT_PATH/src/.nuget/nuget.exe install xunit.runner.console -OutputDirectory $SCRIPT_PATH/src/packages/FAKE -ExcludeVersion -Version 2.0.0
-mono $SCRIPT_PATH/src/.nuget/nuget.exe install NUnit.Console -OutputDirectory $SCRIPT_PATH/src/packages/FAKE -ExcludeVersion -Version 3.2.1
+# Download NuGet if it does not exist.
+if [ ! -f "$NUGET_EXE" ]; then
+ echo "Downloading NuGet..."
+ curl -Lsfo "$NUGET_EXE" $NUGET_URL
+ if [ $? -ne 0 ]; then
+ echo "An error occured while downloading nuget.exe."
+ exit 1
+ fi
+fi
-mono $SCRIPT_PATH/src/.nuget/nuget.exe install NBench.Runner -OutputDirectory $SCRIPT_PATH/src/packages -ExcludeVersion -Version 0.3.3
-
+###########################################################################
+# INSTALL FAKE
+###########################################################################
-if ! [ -e $SCRIPT_PATH/src/packages/SourceLink.Fake/tools/SourceLink.fsx ] ; then
- mono $SCRIPT_PATH/src/.nuget/nuget.exe install SourceLink.Fake -OutputDirectory $SCRIPT_PATH/src/packages -ExcludeVersion
+if [ ! -f "$FAKE_EXE" ]; then
+ mono "$NUGET_EXE" install Fake -ExcludeVersion -Version $FAKE_VERSION -OutputDirectory "$TOOLS_DIR"
+ if [ $? -ne 0 ]; then
+ echo "An error occured while installing Cake."
+ exit 1
+ fi
+fi
+# Make sure that Fake has been installed.
+if [ ! -f "$FAKE_EXE" ]; then
+ echo "Could not find Fake.exe at '$FAKE_EXE'."
+ exit 1
fi
-export encoding=utf-8
+###########################################################################
+# WORKAROUND FOR MONO
+###########################################################################
+export FrameworkPathOverride=/usr/lib/mono/4.5/
+
+###########################################################################
+# RUN BUILD SCRIPT
+###########################################################################
-mono $SCRIPT_PATH/src/packages/FAKE/tools/FAKE.exe build.fsx "$@"
+# Start Fake
+exec mono "$FAKE_EXE" build.fsx "${SCRIPT_ARGUMENTS[@]}" --verbosity=$VERBOSITY --configuration=$CONFIGURATION --target=$TARGET $DRYRUN
diff --git a/buildIncremental.fsx b/buildIncremental.fsx
new file mode 100644
index 00000000000..3033743dd92
--- /dev/null
+++ b/buildIncremental.fsx
@@ -0,0 +1,253 @@
+#I @"tools/FAKE/tools"
+#r "FakeLib.dll"
+
+open System
+open System.IO
+
+open Fake
+open Fake.Git
+
+module IncrementalTests =
+
+ let akkaDefaultBranch = "dev"
+
+ type Supports =
+ | Windows
+ | Linux
+ | All
+
+ let (|IsRunnable|_|) name platform (csproj:string) =
+ let isSupported =
+ match platform with
+ | Windows _ -> isWindows
+ | Linux _ -> isLinux
+ | All _ -> true
+ if (csproj.Contains(name) && isSupported) then Some(name)
+ else None
+
+ let IsRunnable testProject =
+ match testProject with
+ | IsRunnable "Akka.API.Tests.csproj" Linux proj -> false
+ | _ -> true
+
+ let getUnitTestProjects() =
+ let allTestProjects = !! "./**/core/**/*.Tests.csproj"
+ ++ "./**/contrib/**/*.Tests.csproj"
+ -- "./**/serializers/**/*Wire*.csproj"
+ allTestProjects
+ |> Seq.filter IsRunnable
+
+ let isBuildScript (file:string) =
+ match file with
+ | EndsWith "fsx" -> true
+ | EndsWith "ps1" -> true
+ | EndsWith "cmd" -> true
+ | EndsWith "sh" -> true
+ | _ -> false
+
+ let getHeadHashFor repositoryDir branch =
+ let _, msg, error = runGitCommand repositoryDir (sprintf "log --oneline -1 %s" branch)
+ if error <> "" then failwithf "git log --oneline failed: %s" error
+ let logMsg = msg |> Seq.head
+ let tmp =
+ logMsg.Split(' ')
+ |> Seq.head
+ |> fun s -> s.Split('m')
+ if tmp |> Array.length > 2 then tmp.[1].Substring(0,6) else tmp.[0].Substring(0,6)
+
+ let getBranchesFileDiff repositoryDir branch =
+ let _, msg, error = runGitCommand repositoryDir (sprintf "diff %s --name-status" branch)
+ if error <> "" then failwithf "diff %s --name-status failed: %s" branch error
+ msg
+ |> Seq.map (fun line ->
+ let a = line.Split('\t')
+ FileStatus.Parse a.[0],a.[1])
+
+ let getUpstreamRemote repositoryDir =
+ let _, msg, error = runGitCommand repositoryDir "remote add upstream https://github.com/akkadotnet/akka.net"
+ match error with
+ | "" -> log "added upstream remote"
+ | "fatal: remote upstream already exists." -> log "upstream remote already exists"
+ | _ -> failwithf "remote add upstream https://github.com/akkadotnet/akka.net failed: %s" error
+
+ let getUpdatedFiles() =
+ let srcDir = __SOURCE_DIRECTORY__
+ log "Adding upstream remote..."
+ getUpstreamRemote srcDir
+ log "Fetching upstream remote to compare HEAD file changes with..."
+ directRunGitCommandAndFail srcDir "fetch upstream"
+ getBranchesFileDiff srcDir (sprintf "upstream/%s" akkaDefaultBranch)
+ |> Seq.map (fun (_, fi) -> FullName fi)
+ |> Seq.filter (fun fi -> (isInFolder (new DirectoryInfo("./src")) (new FileInfo(fi))) || (isBuildScript fi))
+
+ // Gather all of the folder paths that contain .csproj files
+ let getAllProjectFolders() =
+ !! "./src/**/*.csproj"
+ |> Seq.map (fun f -> DirectoryName (FullName f))
+
+ // Check if the altered file is inside of any of the folder paths that contain .csproj files
+ let isInProjectFolder projectFolder file =
+ isInFolder (new DirectoryInfo(projectFolder)) (new FileInfo(file))
+
+ type ProjectFileInclude = { projectFolder: string; file: string; contains: bool }
+
+ // Return a collection of all projectFolder, altered file, and true/false is contained within
+ let generateContainingProjFileCollection alteredFiles =
+ getAllProjectFolders()
+ |> Seq.map (fun p -> alteredFiles |> Seq.map (fun f -> { projectFolder = p; file = f; contains = isInProjectFolder p f }))
+ |> Seq.concat
+
+ // Find the .csproj file contained within a folder that contains an altered file
+ let findCsprojFilesForAlteredFiles fileProjectContainsSeq =
+ let findCsprojFileFor fileProjectContains =
+ //let projectFolder, file, contains = fileProjectContains
+ match fileProjectContains.contains with
+ | true -> Some(!! (fileProjectContains.projectFolder @@ "*.csproj") |> Seq.head)
+ | false -> None
+ fileProjectContainsSeq
+ |> Seq.map (fun x -> findCsprojFileFor x)
+ |> Seq.choose id
+ |> Seq.map (fun x -> filename x)
+
+ let getAssemblyForProject project =
+ try
+ !! ("src" @@ "**" @@ "bin" @@ "Release" @@ "net452" @@ fileNameWithoutExt project + ".dll")
+ |> Seq.head
+ with
+ | :? System.ArgumentException as ex ->
+ logf "Could not find built assembly for %s. Make sure project is built in Release config." (fileNameWithoutExt project);
+ reraise()
+
+ let getNetCoreAssemblyForProject project =
+ try
+ !! ("src" @@ "**" @@ "bin" @@ "Release" @@ "netcoreapp1.1" @@ fileNameWithoutExt project + ".dll")
+ |> Seq.head
+ with
+ | :? System.ArgumentException as ex ->
+ logfn "Could not find built assembly for %s. Make sure project is built in Release config." (fileNameWithoutExt project);
+ null
+
+ //--------------------------------------------------------------------------------
+ // MultiNodeTestRunner incremental test selection
+ //--------------------------------------------------------------------------------
+
+ let getMntrProjects() =
+ !! "./src/**/*Tests.MultiNode.csproj"
+ |> Seq.map (fun x -> x.ToString())
+
+ let getAllMntrTestAssemblies() = // if we're not running incremental tests
+ getMntrProjects()
+ |> Seq.map (fun x -> getAssemblyForProject x)
+
+ let getAllMntrTestNetCoreAssemblies() = // if we're not running incremental tests
+ getMntrProjects()
+ |> Seq.map (fun x -> getNetCoreAssemblyForProject x)
+
+ //--------------------------------------------------------------------------------
+ // Performance tests incremental test selection
+ //--------------------------------------------------------------------------------
+
+ let getPerfTestProjects() =
+ !! "./src/**/*Tests.Performance.csproj"
+ |> Seq.map (fun x -> x.ToString())
+
+ let getAllPerfTestAssemblies() = //if we're not running incremental tests
+ getPerfTestProjects()
+ |> Seq.map (fun x -> getAssemblyForProject x)
+
+ //--------------------------------------------------------------------------------
+ // Recursive dependency search
+ //--------------------------------------------------------------------------------
+
+ type ProjectPath = { projectName: string; projectPath: string }
+ type ProjectDetails = { parentProject: ProjectPath; dependencies: ProjectPath seq; isTestProject: bool }
+
+ let FullNameLinux baseProj csprojRef =
+ let csprojRef = normalizePath csprojRef
+ let mutable workingDirPath = DirectoryName baseProj
+ let csprojRefParts = split '/' csprojRef
+ let rootPath =
+ csprojRefParts
+ |> List.filter (fun x -> x = "..")
+ |> List.iter (fun x -> workingDirPath <- (DirectoryName workingDirPath))
+ workingDirPath
+ let subPath =
+ csprojRefParts
+ |> List.filter (fun x -> not (x = ".."))
+ |> List.reduce (@@)
+ rootPath @@ subPath
+
+ let getDependentProjectFilePath baseProj csprojRef =
+ match isWindows with
+ | true -> FullName csprojRef
+ | _ -> FullNameLinux baseProj csprojRef
+
+ let getDependentProjects csprojFile =
+ XMLRead true csprojFile "" "" "//Project/ItemGroup/ProjectReference/@Include"
+ |> Seq.map (fun p -> { projectName = filename (normalizePath p); projectPath = getDependentProjectFilePath csprojFile p })
+
+ type TestMode =
+ | Unit
+ | MNTR
+ | Perf
+
+ let isTestProject csproj testMode =
+ match testMode with
+ | Unit -> (filename csproj).Contains("Tests.csproj")
+ | MNTR -> (filename csproj).Contains("Tests.MultiNode.csproj")
+ | Perf -> (filename csproj).Contains("Tests.Performance.csproj")
+
+ let getAllProjectDependencies testMode =
+ !! "./src/**/*.csproj"
+ |> Seq.map (fun f -> { parentProject = { projectName = filename f; projectPath = f }; dependencies = getDependentProjects f; isTestProject = isTestProject f testMode })
+
+ let rec findTestProjectsThatHaveDependencyOn project testMode =
+ let allProjects = getAllProjectDependencies testMode
+ seq { for proj in allProjects do
+ for dep in proj.dependencies do
+ if (proj.parentProject.projectName = project && proj.isTestProject) then
+ // if the altered project is a test project (e.g. Akka.Tests)
+ yield proj;
+ if (dep.projectName = project && proj.isTestProject) then
+ //logfn "%s references %s and is a test project..." proj.parentProject.projectName project
+ yield proj
+ elif (dep.projectName = project && not proj.isTestProject) then
+ //logfn "%s references %s but is not a test project..." proj.parentProject.projectName project
+ yield! findTestProjectsThatHaveDependencyOn proj.parentProject.projectName testMode }
+
+ let getIncrementalTestProjects2 testMode =
+ logfn "Searching for incremental tests to run in %s test mode..." (testMode.ToString())
+ let updatedFiles = getUpdatedFiles()
+ log "The following files have been updated since forking from dev branch..."
+ updatedFiles |> Seq.iter (fun x -> logfn "\t%s" x)
+ log "The following test projects will be run..."
+ if (updatedFiles |> Seq.exists (fun p -> isBuildScript p)) then
+ log "Full test suite"
+ match testMode with
+ | Unit -> getUnitTestProjects()
+ | MNTR -> getMntrProjects()
+ | Perf -> getPerfTestProjects()
+ else
+ updatedFiles
+ |> generateContainingProjFileCollection
+ |> findCsprojFilesForAlteredFiles
+ |> Seq.map (fun p -> findTestProjectsThatHaveDependencyOn p testMode)
+ |> Seq.concat
+ |> Seq.map (fun p -> p.parentProject.projectPath)
+ |> Seq.distinct
+ |> Seq.filter IsRunnable
+
+ let getIncrementalUnitTests() =
+ getIncrementalTestProjects2 Unit
+
+ let getIncrementalMNTRTests() =
+ getIncrementalTestProjects2 MNTR
+ |> Seq.map (fun p -> getAssemblyForProject p)
+
+ let getIncrementalNetCoreMNTRTests() =
+ getIncrementalTestProjects2 MNTR
+ |> Seq.map (fun p -> getNetCoreAssemblyForProject p)
+
+ let getIncrementalPerfTests() =
+ getIncrementalTestProjects2 Perf
+ |> Seq.map (fun p -> getAssemblyForProject p)
diff --git a/docs/api/.gitignore b/docs/api/.gitignore
index da7c71b83ab..7e7bb375b86 100644
--- a/docs/api/.gitignore
+++ b/docs/api/.gitignore
@@ -2,3 +2,4 @@
# temp file #
###############
*.yml
+.manifest
\ No newline at end of file
diff --git a/docs/api/.manifest b/docs/api/.manifest
deleted file mode 100644
index 7f86615d02f..00000000000
--- a/docs/api/.manifest
+++ /dev/null
@@ -1 +0,0 @@
-{"Akka":"Akka.yml","Akka.NotUsed":"Akka.NotUsed.yml","Akka.NotUsed.Instance":"Akka.NotUsed.yml","Akka.NotUsed.GetHashCode":"Akka.NotUsed.yml","Akka.NotUsed.Equals(System.Object)":"Akka.NotUsed.yml","Akka.NotUsed.ToString":"Akka.NotUsed.yml","Akka.NotUsed.Equals(Akka.NotUsed)":"Akka.NotUsed.yml","Akka.NotUsed.CompareTo(Akka.NotUsed)":"Akka.NotUsed.yml","Akka.PatternMatch":"Akka.PatternMatch.yml","Akka.PatternMatch.Match(System.Object)":"Akka.PatternMatch.yml","Akka.PatternMatch.Match``1(System.Object)":"Akka.PatternMatch.yml","Akka.IMatchResult":"Akka.IMatchResult.yml","Akka.IMatchResult.WasHandled":"Akka.IMatchResult.yml","Akka.Case":"Akka.Case.yml","Akka.Case.WasHandled":"Akka.Case.yml","Akka.Case.#ctor(System.Object)":"Akka.Case.yml","Akka.Case.With``1(System.Action)":"Akka.Case.yml","Akka.Case.With``1(System.Action{``0})":"Akka.Case.yml","Akka.Case.Default(System.Action{System.Object})":"Akka.Case.yml","Akka.Case`1":"Akka.Case-1.yml","Akka.Case`1.WasHandled":"Akka.Case-1.yml","Akka.Case`1.#ctor(System.Object)":"Akka.Case-1.yml","Akka.Case`1.With``1(System.Func{`0})":"Akka.Case-1.yml","Akka.Case`1.With``1(System.Func{``0,`0})":"Akka.Case-1.yml","Akka.Case`1.ResultOrDefault(System.Func{System.Object,`0})":"Akka.Case-1.yml","Akka.Actor":"Akka.Actor.yml","Akka.Actor.ActorCell":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Watch(Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Unwatch(Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ReceivedTerminated(Akka.Actor.Terminated)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.WatchedActorTerminated(Akka.Actor.IActorRef,System.Boolean,System.Boolean)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TerminatedQueuedFor(Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TellWatchersWeDied":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.UnwatchWatchedActors(Akka.Actor.ActorBase)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.AddWatcher(Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.RemWatcher(Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.AddressTerminated(Akka.Actor.Address)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.UndefinedUid":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Stash(Akka.Dispatch.SysMsg.SystemMessage)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.#ctor(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.IInternalActorRef,Akka.Actor.Props,Akka.Dispatch.MessageDispatcher,Akka.Actor.IInternalActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.CurrentMessage":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Mailbox":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Dispatcher":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.IsLocal":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Actor":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.IsTerminated":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.System":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SystemImpl":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Props":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Self":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IActorContext#Parent":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Parent":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Sender":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.HasMessages":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.NumberOfMessages":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TaskScheduler":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Init(System.Boolean,Akka.Dispatch.MailboxType)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.GetChildByName(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IActorContext#Child(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ActorSelection(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ActorSelection(Akka.Actor.ActorPath)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IActorContext#GetChildren":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.GetChildren":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Become(Akka.Actor.Receive)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.BecomeStacked(Akka.Actor.Receive)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IActorContext#Become(Akka.Actor.Receive,System.Boolean)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IActorContext#Unbecome":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.UnbecomeStacked":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IUntypedActorContext#Become(Akka.Actor.UntypedReceive)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IUntypedActorContext#BecomeStacked(Akka.Actor.UntypedReceive)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Akka#Actor#IUntypedActorContext#Become(Akka.Actor.UntypedReceive,System.Boolean)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.CreateNewActorInstance":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.UseThreadContext(System.Action)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SendMessage(Akka.Actor.Envelope)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SendMessage(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ClearActorCell":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ClearActor(Akka.Actor.ActorBase)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.PrepareForNewActor":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SetActorFields(Akka.Actor.ActorBase)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SplitNameAndUid(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.GetCurrentSelfOrNoSender":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.GetCurrentSenderOrNoSender":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.CurrentEnvelopeId":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Invoke(Akka.Actor.Envelope)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.AutoReceiveMessage(Akka.Actor.Envelope)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ReceiveMessageForTest(Akka.Actor.Envelope)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Restart(System.Exception)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Start":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.PreStart":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Resume(System.Exception)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Stop":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Suspend":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SetReceiveTimeout(System.Nullable{System.TimeSpan})":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ReceiveTimeout":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.CheckReceiveTimeout":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ChildrenContainer":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.AttachChild(Akka.Actor.Props,System.Boolean,System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.Stop(Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.ReserveChild(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.UnreserveChild(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.InitChild(Akka.Actor.IInternalActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SetChildrenTerminationReason(Akka.Actor.Internal.SuspendReason)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.SetTerminated":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.IsNormal":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.IsTerminating":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TryGetChildStatsByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TryGetChildStatsByRef(Akka.Actor.IActorRef,Akka.Actor.Internal.ChildRestartStats@)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.GetSingleChild(System.String)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.TryGetSingleChild(System.String,Akka.Actor.IInternalActorRef@)":"Akka.Actor.ActorCell.yml","Akka.Actor.ActorCell.RemoveChildAndGetStateChange(Akka.Actor.IActorRef)":"Akka.Actor.ActorCell.yml","Akka.Actor.IActorProducerPlugin":"Akka.Actor.IActorProducerPlugin.yml","Akka.Actor.IActorProducerPlugin.CanBeAppliedTo(System.Type)":"Akka.Actor.IActorProducerPlugin.yml","Akka.Actor.IActorProducerPlugin.AfterIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.IActorProducerPlugin.yml","Akka.Actor.IActorProducerPlugin.BeforeIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.IActorProducerPlugin.yml","Akka.Actor.ActorProducerPluginBase":"Akka.Actor.ActorProducerPluginBase.yml","Akka.Actor.ActorProducerPluginBase.CanBeAppliedTo(System.Type)":"Akka.Actor.ActorProducerPluginBase.yml","Akka.Actor.ActorProducerPluginBase.AfterIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase.yml","Akka.Actor.ActorProducerPluginBase.BeforeIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase.yml","Akka.Actor.ActorProducerPluginBase`1":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPluginBase`1.CanBeAppliedTo(System.Type)":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPluginBase`1.Akka#Actor#IActorProducerPlugin#AfterIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPluginBase`1.Akka#Actor#IActorProducerPlugin#BeforeIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPluginBase`1.AfterIncarnated(`0,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPluginBase`1.BeforeIncarnated(`0,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPluginBase-1.yml","Akka.Actor.ActorProducerPipelineResolver":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.TotalPluginCount":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.#ctor(System.Func{Akka.Event.ILoggingAdapter})":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.Register(Akka.Actor.IActorProducerPlugin)":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.Insert(System.Int32,Akka.Actor.IActorProducerPlugin)":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.Unregister(Akka.Actor.IActorProducerPlugin)":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipelineResolver.IsRegistered(Akka.Actor.IActorProducerPlugin)":"Akka.Actor.ActorProducerPipelineResolver.yml","Akka.Actor.ActorProducerPipeline":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.#ctor(System.Lazy{Akka.Event.ILoggingAdapter},System.Collections.Generic.IEnumerable{Akka.Actor.IActorProducerPlugin})":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.Count":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.AfterActorIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.BeforeActorIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.GetEnumerator":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.ActorProducerPipeline.System#Collections#IEnumerable#GetEnumerator":"Akka.Actor.ActorProducerPipeline.yml","Akka.Actor.AlreadyCanceledCancelable":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Cancel":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.IsCancellationRequested":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Instance":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Token":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Akka#Actor#ICancelable#CancelAfter(System.TimeSpan)":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Akka#Actor#ICancelable#CancelAfter(System.Int32)":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.AlreadyCanceledCancelable.Cancel(System.Boolean)":"Akka.Actor.AlreadyCanceledCancelable.yml","Akka.Actor.CancelableExtensions":"Akka.Actor.CancelableExtensions.yml","Akka.Actor.CancelableExtensions.CancelIfNotNull(Akka.Actor.ICancelable)":"Akka.Actor.CancelableExtensions.yml","Akka.Actor.Cancelable":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.#ctor(Akka.Actor.IActionScheduler,System.TimeSpan)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.#ctor(Akka.Actor.IScheduler,System.TimeSpan)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.#ctor(Akka.Actor.IScheduler,System.Int32)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.#ctor(Akka.Actor.IScheduler)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.#ctor(Akka.Actor.IActionScheduler)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.IsCancellationRequested":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.Token":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.Cancel":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.Cancel(System.Boolean)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.CancelAfter(System.TimeSpan)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.CancelAfter(System.Int32)":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.CreateCanceled":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.CreateLinkedCancelable(Akka.Actor.IScheduler,Akka.Actor.ICancelable[])":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.CreateLinkedCancelable(Akka.Actor.IActionScheduler,Akka.Actor.ICancelable[])":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.Dispose":"Akka.Actor.Cancelable.yml","Akka.Actor.Cancelable.Dispose(System.Boolean)":"Akka.Actor.Cancelable.yml","Akka.Actor.ICancelable":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.Cancel":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.IsCancellationRequested":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.Token":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.CancelAfter(System.TimeSpan)":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.CancelAfter(System.Int32)":"Akka.Actor.ICancelable.yml","Akka.Actor.ICancelable.Cancel(System.Boolean)":"Akka.Actor.ICancelable.yml","Akka.Actor.DateTimeOffsetNowTimeProvider":"Akka.Actor.DateTimeOffsetNowTimeProvider.yml","Akka.Actor.DateTimeOffsetNowTimeProvider.Now":"Akka.Actor.DateTimeOffsetNowTimeProvider.yml","Akka.Actor.DateTimeOffsetNowTimeProvider.MonotonicClock":"Akka.Actor.DateTimeOffsetNowTimeProvider.yml","Akka.Actor.DateTimeOffsetNowTimeProvider.HighResMonotonicClock":"Akka.Actor.DateTimeOffsetNowTimeProvider.yml","Akka.Actor.DateTimeOffsetNowTimeProvider.Instance":"Akka.Actor.DateTimeOffsetNowTimeProvider.yml","Akka.Actor.DedicatedThreadScheduler":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.TimeNow":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.MonotonicClock":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.HighResMonotonicClock":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.#ctor(Akka.Actor.ActorSystem)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.#ctor(Akka.Configuration.Config,Akka.Event.ILoggingAdapter)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.InternalScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.InternalScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.InternalScheduleOnce(System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.InternalScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.DedicatedThreadScheduler.Dispose":"Akka.Actor.DedicatedThreadScheduler.yml","Akka.Actor.ScheduledWork":"Akka.Actor.ScheduledWork.yml","Akka.Actor.ScheduledWork.#ctor(System.Int64,System.Action,System.Threading.CancellationToken)":"Akka.Actor.ScheduledWork.yml","Akka.Actor.ScheduledWork.Token":"Akka.Actor.ScheduledWork.yml","Akka.Actor.ScheduledWork.TickExpires":"Akka.Actor.ScheduledWork.yml","Akka.Actor.ScheduledWork.Action":"Akka.Actor.ScheduledWork.yml","Akka.Actor.IDateTimeOffsetNowTimeProvider":"Akka.Actor.IDateTimeOffsetNowTimeProvider.yml","Akka.Actor.ITimeProvider":"Akka.Actor.ITimeProvider.yml","Akka.Actor.ITimeProvider.Now":"Akka.Actor.ITimeProvider.yml","Akka.Actor.ITimeProvider.MonotonicClock":"Akka.Actor.ITimeProvider.yml","Akka.Actor.ITimeProvider.HighResMonotonicClock":"Akka.Actor.ITimeProvider.yml","Akka.Actor.DeprecatedSchedulerExtensions":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.ScheduleOnce(Akka.Actor.IScheduler,System.TimeSpan,Akka.Actor.IActorRef,System.Object)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.ScheduleOnce(Akka.Actor.IScheduler,System.TimeSpan,Akka.Actor.IActorRef,System.Object,System.Threading.CancellationToken)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.Schedule(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan,Akka.Actor.IActorRef,System.Object)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.Schedule(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan,Akka.Actor.IActorRef,System.Object,System.Threading.CancellationToken)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.Schedule(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan,System.Action)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.Schedule(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan,System.Action,System.Threading.CancellationToken)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.ScheduleOnce(Akka.Actor.IScheduler,System.TimeSpan,System.Action)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.DeprecatedSchedulerExtensions.ScheduleOnce(Akka.Actor.IScheduler,System.TimeSpan,System.Action,System.Threading.CancellationToken)":"Akka.Actor.DeprecatedSchedulerExtensions.yml","Akka.Actor.IActionScheduler":"Akka.Actor.IActionScheduler.yml","Akka.Actor.IActionScheduler.ScheduleOnce(System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.IActionScheduler.yml","Akka.Actor.IActionScheduler.ScheduleOnce(System.TimeSpan,System.Action)":"Akka.Actor.IActionScheduler.yml","Akka.Actor.IActionScheduler.ScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.IActionScheduler.yml","Akka.Actor.IActionScheduler.ScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action)":"Akka.Actor.IActionScheduler.yml","Akka.Actor.IAdvancedScheduler":"Akka.Actor.IAdvancedScheduler.yml","Akka.Actor.IScheduler":"Akka.Actor.IScheduler.yml","Akka.Actor.IScheduler.Advanced":"Akka.Actor.IScheduler.yml","Akka.Actor.ReceiveActor":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.#ctor":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Akka#Actor#Internal#IInitializableActor#Init":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.OnReceive(System.Object)":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Become(System.Action)":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.BecomeStacked(System.Action)":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Become(System.Action,System.Boolean)":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive``1(System.Func{``0,System.Threading.Tasks.Task})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAsync``1(System.Func{``0,System.Threading.Tasks.Task},System.Predicate{``0})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAsync``1(System.Predicate{``0},System.Func{``0,System.Threading.Tasks.Task})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAsync(System.Type,System.Func{System.Object,System.Threading.Tasks.Task},System.Predicate{System.Object})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAsync(System.Type,System.Predicate{System.Object},System.Func{System.Object,System.Threading.Tasks.Task})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAnyAsync(System.Func{System.Object,System.Threading.Tasks.Task})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive``1(System.Action{``0},System.Predicate{``0})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive``1(System.Predicate{``0},System.Action{``0})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive(System.Type,System.Action{System.Object},System.Predicate{System.Object})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive(System.Type,System.Predicate{System.Object},System.Action{System.Object})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive``1(System.Func{``0,System.Boolean})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.Receive(System.Type,System.Func{System.Object,System.Boolean})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.ReceiveActor.ReceiveAny(System.Action{System.Object})":"Akka.Actor.ReceiveActor.yml","Akka.Actor.Status":"Akka.Actor.Status.yml","Akka.Actor.Status.Success":"Akka.Actor.Status.Success.yml","Akka.Actor.Status.Success.Status":"Akka.Actor.Status.Success.yml","Akka.Actor.Status.Success.#ctor(System.Object)":"Akka.Actor.Status.Success.yml","Akka.Actor.Status.Failure":"Akka.Actor.Status.Failure.yml","Akka.Actor.Status.Failure.Cause":"Akka.Actor.Status.Failure.yml","Akka.Actor.Status.Failure.#ctor(System.Exception)":"Akka.Actor.Status.Failure.yml","Akka.Actor.Status.Failure.ToString":"Akka.Actor.Status.Failure.yml","Akka.Actor.ILogReceive":"Akka.Actor.ILogReceive.yml","Akka.Actor.IActorLogging":"Akka.Actor.IActorLogging.yml","Akka.Actor.IActorLogging.Log":"Akka.Actor.IActorLogging.yml","Akka.Actor.IInternalActor":"Akka.Actor.IInternalActor.yml","Akka.Actor.IInternalActor.ActorContext":"Akka.Actor.IInternalActor.yml","Akka.Actor.ActorBase":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.#ctor":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Sender":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Self":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Akka#Actor#IInternalActor#ActorContext":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Context":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.AroundReceive(Akka.Actor.Receive,System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Receive(System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.EmptyReceive":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Unhandled(System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Become(Akka.Actor.Receive,System.Boolean)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Become(Akka.Actor.Receive)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.BecomeStacked(Akka.Actor.Receive)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.UnbecomeStacked":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.Unbecome":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.SetReceiveTimeout(System.Nullable{System.TimeSpan})":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.SupervisorStrategy":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.AroundPreRestart(System.Exception,System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.AroundPreStart":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.PreStart":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.AroundPostRestart(System.Exception,System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.PreRestart(System.Exception,System.Object)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.PostRestart(System.Exception)":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.AroundPostStop":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorBase.PostStop":"Akka.Actor.ActorBase.yml","Akka.Actor.ActorPath":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.IsValidPathElement(System.String)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.#ctor(Akka.Actor.Address,System.String)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.#ctor(Akka.Actor.ActorPath,System.String,System.Int64)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Uid":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Elements":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ElementsWithUid":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Name":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Address":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Root":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Parent":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Equals(Akka.Actor.ActorPath)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.CompareTo(Akka.Actor.ActorPath)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.WithUid(System.Int64)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.op_Division(Akka.Actor.ActorPath,System.String)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.op_Division(Akka.Actor.ActorPath,System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Parse(System.String)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.TryParse(System.String,Akka.Actor.ActorPath@)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.TryParseAddress(System.String,Akka.Actor.Address@)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToStringWithoutAddress":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToString":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToStringWithUid":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Child(System.String)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.GetHashCode":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Equals(System.Object)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.op_Equality(Akka.Actor.ActorPath,Akka.Actor.ActorPath)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.op_Inequality(Akka.Actor.ActorPath,Akka.Actor.ActorPath)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToStringWithAddress":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToSerializationFormat":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToSerializationFormatWithAddress(Akka.Actor.Address)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToStringWithAddress(Akka.Actor.Address)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.FormatPathElements(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.ActorPath.yml","Akka.Actor.ActorPath.Surrogate":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.#ctor(System.String)":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.Path":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.Equals(Akka.Actor.ActorPath.Surrogate)":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.Equals(Akka.Actor.ActorPath)":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.Equals(System.Object)":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.ActorPath.Surrogate.GetHashCode":"Akka.Actor.ActorPath.Surrogate.yml","Akka.Actor.RootActorPath":"Akka.Actor.RootActorPath.yml","Akka.Actor.RootActorPath.#ctor(Akka.Actor.Address,System.String)":"Akka.Actor.RootActorPath.yml","Akka.Actor.RootActorPath.Parent":"Akka.Actor.RootActorPath.yml","Akka.Actor.RootActorPath.Root":"Akka.Actor.RootActorPath.yml","Akka.Actor.RootActorPath.WithUid(System.Int64)":"Akka.Actor.RootActorPath.yml","Akka.Actor.RootActorPath.CompareTo(Akka.Actor.ActorPath)":"Akka.Actor.RootActorPath.yml","Akka.Actor.ChildActorPath":"Akka.Actor.ChildActorPath.yml","Akka.Actor.ChildActorPath.#ctor(Akka.Actor.ActorPath,System.String,System.Int64)":"Akka.Actor.ChildActorPath.yml","Akka.Actor.ChildActorPath.Parent":"Akka.Actor.ChildActorPath.yml","Akka.Actor.ChildActorPath.Root":"Akka.Actor.ChildActorPath.yml","Akka.Actor.ChildActorPath.WithUid(System.Int64)":"Akka.Actor.ChildActorPath.yml","Akka.Actor.ChildActorPath.CompareTo(Akka.Actor.ActorPath)":"Akka.Actor.ChildActorPath.yml","Akka.Actor.IActorRefScope":"Akka.Actor.IActorRefScope.yml","Akka.Actor.IActorRefScope.IsLocal":"Akka.Actor.IActorRefScope.yml","Akka.Actor.IRepointableRef":"Akka.Actor.IRepointableRef.yml","Akka.Actor.IRepointableRef.IsStarted":"Akka.Actor.IRepointableRef.yml","Akka.Actor.FutureActorRef":"Akka.Actor.FutureActorRef.yml","Akka.Actor.FutureActorRef.#ctor(System.Threading.Tasks.TaskCompletionSource{System.Object},System.Action,Akka.Actor.ActorPath)":"Akka.Actor.FutureActorRef.yml","Akka.Actor.FutureActorRef.Path":"Akka.Actor.FutureActorRef.yml","Akka.Actor.FutureActorRef.Provider":"Akka.Actor.FutureActorRef.yml","Akka.Actor.FutureActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.FutureActorRef.yml","Akka.Actor.FutureActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.FutureActorRef.yml","Akka.Actor.IActorRef":"Akka.Actor.IActorRef.yml","Akka.Actor.IActorRef.Path":"Akka.Actor.IActorRef.yml","Akka.Actor.ActorRefImplicitSenderExtensions":"Akka.Actor.ActorRefImplicitSenderExtensions.yml","Akka.Actor.ActorRefImplicitSenderExtensions.Tell(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.ActorRefImplicitSenderExtensions.yml","Akka.Actor.ActorRefImplicitSenderExtensions.Forward(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.ActorRefImplicitSenderExtensions.yml","Akka.Actor.ActorRefs":"Akka.Actor.ActorRefs.yml","Akka.Actor.ActorRefs.Nobody":"Akka.Actor.ActorRefs.yml","Akka.Actor.ActorRefs.NoSender":"Akka.Actor.ActorRefs.yml","Akka.Actor.ActorRefBase":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.Path":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.Tell(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.ToString":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.Equals(System.Object)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.GetHashCode":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.CompareTo(System.Object)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.Equals(Akka.Actor.IActorRef)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.CompareTo(Akka.Actor.IActorRef)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.ActorRefBase.yml","Akka.Actor.ActorRefBase.Surrogate":"Akka.Actor.ActorRefBase.Surrogate.yml","Akka.Actor.ActorRefBase.Surrogate.#ctor(System.String)":"Akka.Actor.ActorRefBase.Surrogate.yml","Akka.Actor.ActorRefBase.Surrogate.Path":"Akka.Actor.ActorRefBase.Surrogate.yml","Akka.Actor.ActorRefBase.Surrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.ActorRefBase.Surrogate.yml","Akka.Actor.IInternalActorRef":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Parent":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Provider":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.IsTerminated":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.GetChild(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Resume(System.Exception)":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Start":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Stop":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Restart(System.Exception)":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.Suspend":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage,Akka.Actor.IActorRef)":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.IInternalActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.IInternalActorRef.yml","Akka.Actor.InternalActorRefBase":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Parent":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Provider":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.GetChild(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Resume(System.Exception)":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Start":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Stop":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Restart(System.Exception)":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.Suspend":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.IsTerminated":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.IsLocal":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage,Akka.Actor.IActorRef)":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.InternalActorRefBase.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.InternalActorRefBase.yml","Akka.Actor.MinimalActorRef":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Parent":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.GetChild(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Resume(System.Exception)":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Start":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Stop":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Restart(System.Exception)":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.Suspend":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.IsLocal":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.MinimalActorRef.IsTerminated":"Akka.Actor.MinimalActorRef.yml","Akka.Actor.Nobody":"Akka.Actor.Nobody.yml","Akka.Actor.Nobody.Instance":"Akka.Actor.Nobody.yml","Akka.Actor.Nobody.Path":"Akka.Actor.Nobody.yml","Akka.Actor.Nobody.Provider":"Akka.Actor.Nobody.yml","Akka.Actor.Nobody.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Nobody.yml","Akka.Actor.Nobody.NobodySurrogate":"Akka.Actor.Nobody.NobodySurrogate.yml","Akka.Actor.Nobody.NobodySurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Nobody.NobodySurrogate.yml","Akka.Actor.ActorRefWithCell":"Akka.Actor.ActorRefWithCell.yml","Akka.Actor.ActorRefWithCell.Underlying":"Akka.Actor.ActorRefWithCell.yml","Akka.Actor.ActorRefWithCell.Children":"Akka.Actor.ActorRefWithCell.yml","Akka.Actor.ActorRefWithCell.GetSingleChild(System.String)":"Akka.Actor.ActorRefWithCell.yml","Akka.Actor.ActorRefExtensions":"Akka.Actor.ActorRefExtensions.yml","Akka.Actor.ActorRefExtensions.IsNobody(Akka.Actor.IActorRef)":"Akka.Actor.ActorRefExtensions.yml","Akka.Actor.ActorRefFactoryExtensions":"Akka.Actor.ActorRefFactoryExtensions.yml","Akka.Actor.ActorRefFactoryExtensions.ActorOf``1(Akka.Actor.IActorRefFactory,System.String)":"Akka.Actor.ActorRefFactoryExtensions.yml","Akka.Actor.ActorRefFactoryExtensions.ActorSelection(Akka.Actor.IActorRefFactory,Akka.Actor.IActorRef,System.String)":"Akka.Actor.ActorRefFactoryExtensions.yml","Akka.Actor.ActorRefFactoryShared":"Akka.Actor.ActorRefFactoryShared.yml","Akka.Actor.ActorRefFactoryShared.ActorSelection(Akka.Actor.ActorPath,Akka.Actor.ActorSystem)":"Akka.Actor.ActorRefFactoryShared.yml","Akka.Actor.ActorRefFactoryShared.ActorSelection(System.String,Akka.Actor.ActorSystem,Akka.Actor.IActorRef)":"Akka.Actor.ActorRefFactoryShared.yml","Akka.Actor.ActorRefFactoryShared.ActorSelection(Akka.Actor.IActorRef,System.String)":"Akka.Actor.ActorRefFactoryShared.yml","Akka.Actor.IActorRefProvider":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.RootGuardian":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.RootGuardianAt(Akka.Actor.Address)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.Guardian":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.SystemGuardian":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.DeadLetters":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.RootPath":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.Settings":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.Init(Akka.Actor.Internal.ActorSystemImpl)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.Deployer":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.TempPath":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.TempContainer":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.RegisterTempActor(Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.UnregisterTempActor(Akka.Actor.ActorPath)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.ActorOf(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.Props,Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath,System.Boolean,Akka.Actor.Deploy,System.Boolean,System.Boolean)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.ResolveActorRef(System.String)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.ResolveActorRef(Akka.Actor.ActorPath)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.TerminationTask":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.GetExternalAddressFor(Akka.Actor.Address)":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.IActorRefProvider.DefaultAddress":"Akka.Actor.IActorRefProvider.yml","Akka.Actor.LocalActorRefProvider":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.#ctor(System.String,Akka.Actor.Settings,Akka.Event.EventStream)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.#ctor(System.String,Akka.Actor.Settings,Akka.Event.EventStream,Akka.Actor.Deployer,System.Func{Akka.Actor.ActorPath,Akka.Actor.IInternalActorRef})":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.DeadLetters":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.Deployer":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.RootGuardian":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.RootPath":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.Settings":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.SystemGuardian":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.TempContainer":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.TerminationTask":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.Guardian":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.EventStream":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.TempPath":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.RegisterExtraName(System.String,Akka.Actor.IInternalActorRef)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.RootGuardianAt(Akka.Actor.Address)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.RegisterTempActor(Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.UnregisterTempActor(Akka.Actor.ActorPath)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.Init(Akka.Actor.Internal.ActorSystemImpl)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.ResolveActorRef(System.String)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.ResolveActorRef(Akka.Actor.ActorPath)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.ActorOf(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.Props,Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath,System.Boolean,Akka.Actor.Deploy,System.Boolean,System.Boolean)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.GetExternalAddressFor(Akka.Actor.Address)":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.DefaultAddress":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.LocalActorRefProvider.Log":"Akka.Actor.LocalActorRefProvider.yml","Akka.Actor.ActorSelection":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.Anchor":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.Path":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.PathString":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.#ctor":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.#ctor(Akka.Actor.IActorRef,Akka.Actor.SelectionPathElement[])":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.#ctor(Akka.Actor.IActorRef,System.String)":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.#ctor(Akka.Actor.IActorRef,System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.Tell(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.ResolveOne(System.TimeSpan)":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.Equals(System.Object)":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.Equals(Akka.Actor.ActorSelection)":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.GetHashCode":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelection.ToString":"Akka.Actor.ActorSelection.yml","Akka.Actor.ActorSelectionMessage":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.ActorSelectionMessage.#ctor(System.Object,Akka.Actor.SelectionPathElement[],System.Boolean)":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.ActorSelectionMessage.Message":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.ActorSelectionMessage.Elements":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.ActorSelectionMessage.WildCardFanOut":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.ActorSelectionMessage.ToString":"Akka.Actor.ActorSelectionMessage.yml","Akka.Actor.SelectionPathElement":"Akka.Actor.SelectionPathElement.yml","Akka.Actor.SelectChildName":"Akka.Actor.SelectChildName.yml","Akka.Actor.SelectChildName.#ctor(System.String)":"Akka.Actor.SelectChildName.yml","Akka.Actor.SelectChildName.Name":"Akka.Actor.SelectChildName.yml","Akka.Actor.SelectChildName.ToString":"Akka.Actor.SelectChildName.yml","Akka.Actor.SelectChildPattern":"Akka.Actor.SelectChildPattern.yml","Akka.Actor.SelectChildPattern.#ctor(System.String)":"Akka.Actor.SelectChildPattern.yml","Akka.Actor.SelectChildPattern.PatternStr":"Akka.Actor.SelectChildPattern.yml","Akka.Actor.SelectChildPattern.ToString":"Akka.Actor.SelectChildPattern.yml","Akka.Actor.SelectParent":"Akka.Actor.SelectParent.yml","Akka.Actor.SelectParent.ToString":"Akka.Actor.SelectParent.yml","Akka.Actor.ActorSystem":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Settings":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Name":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Serialization":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.EventStream":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.DeadLetters":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Dispatchers":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Mailboxes":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Scheduler":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Log":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.StartTime":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Uptime":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Create(System.String,Akka.Configuration.Config)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Create(System.String)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.GetExtension(Akka.Actor.IExtensionId)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.GetExtension``1":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.HasExtension(System.Type)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.HasExtension``1":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.TryGetExtension(System.Type,System.Object@)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.TryGetExtension``1(``0@)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.RegisterOnTermination(System.Action)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Shutdown":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Terminate":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.TerminationTask":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.AwaitTermination":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.AwaitTermination(System.TimeSpan)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.AwaitTermination(System.TimeSpan,System.Threading.CancellationToken)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.WhenTerminated":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Stop(Akka.Actor.IActorRef)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.Dispose":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.RegisterExtension(Akka.Actor.IExtensionId)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.ActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.ActorSelection(Akka.Actor.ActorPath)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.ActorSelection(System.String)":"Akka.Actor.ActorSystem.yml","Akka.Actor.ActorSystem.WaitForShutdown":"Akka.Actor.ActorSystem.yml","Akka.Actor.Address":"Akka.Actor.Address.yml","Akka.Actor.Address.AllSystems":"Akka.Actor.Address.yml","Akka.Actor.Address.#ctor(System.String,System.String,System.String,System.Nullable{System.Int32})":"Akka.Actor.Address.yml","Akka.Actor.Address.Host":"Akka.Actor.Address.yml","Akka.Actor.Address.Port":"Akka.Actor.Address.yml","Akka.Actor.Address.System":"Akka.Actor.Address.yml","Akka.Actor.Address.Protocol":"Akka.Actor.Address.yml","Akka.Actor.Address.HasLocalScope":"Akka.Actor.Address.yml","Akka.Actor.Address.HasGlobalScope":"Akka.Actor.Address.yml","Akka.Actor.Address.ToString":"Akka.Actor.Address.yml","Akka.Actor.Address.Equals(Akka.Actor.Address)":"Akka.Actor.Address.yml","Akka.Actor.Address.Equals(System.Object)":"Akka.Actor.Address.yml","Akka.Actor.Address.GetHashCode":"Akka.Actor.Address.yml","Akka.Actor.Address.Clone":"Akka.Actor.Address.yml","Akka.Actor.Address.WithProtocol(System.String)":"Akka.Actor.Address.yml","Akka.Actor.Address.WithSystem(System.String)":"Akka.Actor.Address.yml","Akka.Actor.Address.WithHost(System.String)":"Akka.Actor.Address.yml","Akka.Actor.Address.WithPort(System.Nullable{System.Int32})":"Akka.Actor.Address.yml","Akka.Actor.Address.op_Equality(Akka.Actor.Address,Akka.Actor.Address)":"Akka.Actor.Address.yml","Akka.Actor.Address.op_Inequality(Akka.Actor.Address,Akka.Actor.Address)":"Akka.Actor.Address.yml","Akka.Actor.Address.HostPort":"Akka.Actor.Address.yml","Akka.Actor.Address.Parse(System.String)":"Akka.Actor.Address.yml","Akka.Actor.Address.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Address.yml","Akka.Actor.Address.AddressSurrogate":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.Address.AddressSurrogate.Protocol":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.Address.AddressSurrogate.System":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.Address.AddressSurrogate.Host":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.Address.AddressSurrogate.Port":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.Address.AddressSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Address.AddressSurrogate.yml","Akka.Actor.RelativeActorPath":"Akka.Actor.RelativeActorPath.yml","Akka.Actor.RelativeActorPath.Unapply(System.String)":"Akka.Actor.RelativeActorPath.yml","Akka.Actor.DeadLetterMailbox":"Akka.Actor.DeadLetterMailbox.yml","Akka.Actor.DeadLetterMailbox.#ctor(Akka.Actor.IActorRef)":"Akka.Actor.DeadLetterMailbox.yml","Akka.Actor.Deploy":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Local":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.NoDispatcherGiven":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.NoMailboxGiven":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.NoScopeGiven":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.None":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(System.String,Akka.Actor.Scope)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(Akka.Actor.Scope)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(Akka.Routing.RouterConfig,Akka.Actor.Scope)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(Akka.Routing.RouterConfig)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(System.String,Akka.Configuration.Config,Akka.Routing.RouterConfig,Akka.Actor.Scope,System.String)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.#ctor(System.String,Akka.Configuration.Config,Akka.Routing.RouterConfig,Akka.Actor.Scope,System.String,System.String)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Path":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Config":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.RouterConfig":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Scope":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Mailbox":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Dispatcher":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.Equals(Akka.Actor.Deploy)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.WithFallback(Akka.Actor.Deploy)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.WithScope(Akka.Actor.Scope)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.WithMailbox(System.String)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.WithDispatcher(System.String)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.WithRouterConfig(Akka.Routing.RouterConfig)":"Akka.Actor.Deploy.yml","Akka.Actor.Deploy.DeploySurrogate":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.Scope":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.RouterConfig":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.Path":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.Config":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.Mailbox":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.Dispatcher":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.Deploy.DeploySurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Deploy.DeploySurrogate.yml","Akka.Actor.ExtendedActorSystem":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.Provider":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.Guardian":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.LookupRoot":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.SystemGuardian":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.ActorPipelineResolver":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.SystemActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.SystemActorOf``1(System.String)":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.ExtendedActorSystem.Abort":"Akka.Actor.ExtendedActorSystem.yml","Akka.Actor.Futures":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask(Akka.Actor.ICanTell,System.Object,System.Threading.CancellationToken)":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan},System.Threading.CancellationToken)":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan})":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Threading.CancellationToken)":"Akka.Actor.Futures.yml","Akka.Actor.Futures.Ask``1(Akka.Actor.ICanTell,System.Object,System.Nullable{System.TimeSpan},System.Threading.CancellationToken)":"Akka.Actor.Futures.yml","Akka.Actor.IAutoReceivedMessage":"Akka.Actor.IAutoReceivedMessage.yml","Akka.Actor.Terminated":"Akka.Actor.Terminated.yml","Akka.Actor.Terminated.#ctor(Akka.Actor.IActorRef,System.Boolean,System.Boolean)":"Akka.Actor.Terminated.yml","Akka.Actor.Terminated.ActorRef":"Akka.Actor.Terminated.yml","Akka.Actor.Terminated.AddressTerminated":"Akka.Actor.Terminated.yml","Akka.Actor.Terminated.ExistenceConfirmed":"Akka.Actor.Terminated.yml","Akka.Actor.Terminated.ToString":"Akka.Actor.Terminated.yml","Akka.Actor.Identify":"Akka.Actor.Identify.yml","Akka.Actor.Identify.#ctor(System.Object)":"Akka.Actor.Identify.yml","Akka.Actor.Identify.MessageId":"Akka.Actor.Identify.yml","Akka.Actor.Identify.ToString":"Akka.Actor.Identify.yml","Akka.Actor.ActorIdentity":"Akka.Actor.ActorIdentity.yml","Akka.Actor.ActorIdentity.#ctor(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ActorIdentity.yml","Akka.Actor.ActorIdentity.MessageId":"Akka.Actor.ActorIdentity.yml","Akka.Actor.ActorIdentity.Subject":"Akka.Actor.ActorIdentity.yml","Akka.Actor.ActorIdentity.ToString":"Akka.Actor.ActorIdentity.yml","Akka.Actor.PoisonPill":"Akka.Actor.PoisonPill.yml","Akka.Actor.PoisonPill.Instance":"Akka.Actor.PoisonPill.yml","Akka.Actor.PoisonPill.ToString":"Akka.Actor.PoisonPill.yml","Akka.Actor.Kill":"Akka.Actor.Kill.yml","Akka.Actor.Kill.Instance":"Akka.Actor.Kill.yml","Akka.Actor.Kill.ToString":"Akka.Actor.Kill.yml","Akka.Actor.EventStreamActor":"Akka.Actor.EventStreamActor.yml","Akka.Actor.EventStreamActor.Receive(System.Object)":"Akka.Actor.EventStreamActor.yml","Akka.Actor.GuardianActor":"Akka.Actor.GuardianActor.yml","Akka.Actor.GuardianActor.Receive(System.Object)":"Akka.Actor.GuardianActor.yml","Akka.Actor.GuardianActor.PreStart":"Akka.Actor.GuardianActor.yml","Akka.Actor.SystemGuardianActor":"Akka.Actor.SystemGuardianActor.yml","Akka.Actor.SystemGuardianActor.#ctor(Akka.Actor.IActorRef)":"Akka.Actor.SystemGuardianActor.yml","Akka.Actor.SystemGuardianActor.Receive(System.Object)":"Akka.Actor.SystemGuardianActor.yml","Akka.Actor.SystemGuardianActor.PreRestart(System.Exception,System.Object)":"Akka.Actor.SystemGuardianActor.yml","Akka.Actor.DeadLetterActorRef":"Akka.Actor.DeadLetterActorRef.yml","Akka.Actor.DeadLetterActorRef.#ctor(Akka.Actor.IActorRefProvider,Akka.Actor.ActorPath,Akka.Event.EventStream)":"Akka.Actor.DeadLetterActorRef.yml","Akka.Actor.DeadLetterActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.DeadLetterActorRef.yml","Akka.Actor.DeadLetterActorRef.SpecialHandle(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.DeadLetterActorRef.yml","Akka.Actor.ICell":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Self":"Akka.Actor.ICell.yml","Akka.Actor.ICell.System":"Akka.Actor.ICell.yml","Akka.Actor.ICell.SystemImpl":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Start":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Suspend":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Resume(System.Exception)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Restart(System.Exception)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Stop":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Parent":"Akka.Actor.ICell.yml","Akka.Actor.ICell.IsLocal":"Akka.Actor.ICell.yml","Akka.Actor.ICell.Props":"Akka.Actor.ICell.yml","Akka.Actor.ICell.HasMessages":"Akka.Actor.ICell.yml","Akka.Actor.ICell.NumberOfMessages":"Akka.Actor.ICell.yml","Akka.Actor.ICell.IsTerminated":"Akka.Actor.ICell.yml","Akka.Actor.ICell.SendMessage(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.GetChildren":"Akka.Actor.ICell.yml","Akka.Actor.ICell.ChildrenContainer":"Akka.Actor.ICell.yml","Akka.Actor.ICell.GetSingleChild(System.String)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.GetChildByName(System.String)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.TryGetChildStatsByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.ICell.yml","Akka.Actor.ICell.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.ICell.yml","Akka.Actor.EmptyLocalActorRef":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.#ctor(Akka.Actor.IActorRefProvider,Akka.Actor.ActorPath,Akka.Event.EventStream)":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.Path":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.Provider":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.IsTerminated":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.EmptyLocalActorRef.SpecialHandle(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.EmptyLocalActorRef.yml","Akka.Actor.ICanTell":"Akka.Actor.ICanTell.yml","Akka.Actor.ICanTell.Tell(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ICanTell.yml","Akka.Actor.IInboxable":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.Receiver":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.Receive":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.Receive(System.TimeSpan)":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.ReceiveAsync":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.ReceiveAsync(System.TimeSpan)":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.ReceiveWhere(System.Predicate{System.Object})":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.ReceiveWhere(System.Predicate{System.Object},System.TimeSpan)":"Akka.Actor.IInboxable.yml","Akka.Actor.IInboxable.Send(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.IInboxable.yml","Akka.Actor.Inbox":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Create(Akka.Actor.ActorSystem)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Receiver":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Watch(Akka.Actor.IActorRef)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Unwatch(Akka.Actor.IActorRef)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Send(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Receive":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Receive(System.TimeSpan)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.ReceiveWhere(System.Predicate{System.Object})":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.ReceiveWhere(System.Predicate{System.Object},System.TimeSpan)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.ReceiveAsync":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.ReceiveAsync(System.TimeSpan)":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Dispose":"Akka.Actor.Inbox.yml","Akka.Actor.Inbox.Dispose(System.Boolean)":"Akka.Actor.Inbox.yml","Akka.Actor.LocalScope":"Akka.Actor.LocalScope.yml","Akka.Actor.LocalScope.Instance":"Akka.Actor.LocalScope.yml","Akka.Actor.LocalScope.WithFallback(Akka.Actor.Scope)":"Akka.Actor.LocalScope.yml","Akka.Actor.LocalScope.Copy":"Akka.Actor.LocalScope.yml","Akka.Actor.LocalScope.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.LocalScope.yml","Akka.Actor.LocalScope.LocalScopeSurrogate":"Akka.Actor.LocalScope.LocalScopeSurrogate.yml","Akka.Actor.LocalScope.LocalScopeSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.LocalScope.LocalScopeSurrogate.yml","Akka.Actor.NameAndUid":"Akka.Actor.NameAndUid.yml","Akka.Actor.NameAndUid.#ctor(System.String,System.Int32)":"Akka.Actor.NameAndUid.yml","Akka.Actor.NameAndUid.Name":"Akka.Actor.NameAndUid.yml","Akka.Actor.NameAndUid.Uid":"Akka.Actor.NameAndUid.yml","Akka.Actor.NameAndUid.ToString":"Akka.Actor.NameAndUid.yml","Akka.Actor.ReceiveTimeout":"Akka.Actor.ReceiveTimeout.yml","Akka.Actor.ReceiveTimeout.Instance":"Akka.Actor.ReceiveTimeout.yml","Akka.Actor.RemoteScope":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.#ctor":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.#ctor(Akka.Actor.Address)":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.Address":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.Equals(Akka.Actor.RemoteScope)":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.Equals(System.Object)":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.GetHashCode":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.WithFallback(Akka.Actor.Scope)":"Akka.Actor.RemoteScope.yml","Akka.Actor.RemoteScope.Copy":"Akka.Actor.RemoteScope.yml","Akka.Actor.RepointableActorRef":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.System":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Props":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Dispatcher":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Supervisor":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef._path":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.#ctor(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.Props,Akka.Dispatch.MessageDispatcher,Akka.Dispatch.MailboxType,Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Underlying":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Lookup":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.IsTerminated":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.SwapUnderlying(Akka.Actor.ICell)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Initialize(System.Boolean)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Point":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.NewCell":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Path":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Parent":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Provider":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.IsLocal":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Start":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Suspend":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Resume(System.Exception)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Stop":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Restart(System.Exception)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.IsStarted":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.GetChild(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.GetSingleChild(System.String)":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.RepointableActorRef.Children":"Akka.Actor.RepointableActorRef.yml","Akka.Actor.UnstartedCell":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.#ctor(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.RepointableActorRef,Akka.Actor.Props,Akka.Actor.IInternalActorRef)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.ReplaceWith(Akka.Actor.ICell)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.System":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.SystemImpl":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Start":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Suspend":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Resume(System.Exception)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Restart(System.Exception)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Stop":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Parent":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.GetChildren":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.ChildrenContainer":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.GetSingleChild(System.String)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.GetChildByName(System.String)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.TryGetChildStatsByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.SendMessage(Akka.Actor.IActorRef,System.Object)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.IsLocal":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.IsTerminated":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.HasMessages":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.NumberOfMessages":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Self":"Akka.Actor.UnstartedCell.yml","Akka.Actor.UnstartedCell.Props":"Akka.Actor.UnstartedCell.yml","Akka.Actor.RootGuardianActorRef":"Akka.Actor.RootGuardianActorRef.yml","Akka.Actor.RootGuardianActorRef.#ctor(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.Props,Akka.Dispatch.MessageDispatcher,Akka.Dispatch.MailboxType,Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath,Akka.Actor.IInternalActorRef,System.Collections.Generic.IReadOnlyDictionary{System.String,Akka.Actor.IInternalActorRef})":"Akka.Actor.RootGuardianActorRef.yml","Akka.Actor.RootGuardianActorRef.Parent":"Akka.Actor.RootGuardianActorRef.yml","Akka.Actor.RootGuardianActorRef.SetTempContainer(Akka.Actor.IInternalActorRef)":"Akka.Actor.RootGuardianActorRef.yml","Akka.Actor.RootGuardianActorRef.GetSingleChild(System.String)":"Akka.Actor.RootGuardianActorRef.yml","Akka.Actor.RootGuardianSupervisor":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.#ctor(Akka.Actor.RootActorPath,Akka.Actor.IActorRefProvider,System.Threading.Tasks.TaskCompletionSource{Akka.Actor.Status},Akka.Event.ILoggingAdapter)":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.CauseOfTermination":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.Stop":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.Path":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.RootGuardianSupervisor.Provider":"Akka.Actor.RootGuardianSupervisor.yml","Akka.Actor.Deployer":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.Default":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.#ctor(Akka.Actor.Settings)":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.Lookup(Akka.Actor.ActorPath)":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.Lookup(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.Lookup(System.Collections.Generic.IEnumerator{System.String})":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.SetDeploy(Akka.Actor.Deploy)":"Akka.Actor.Deployer.yml","Akka.Actor.Deployer.ParseConfig(System.String,Akka.Configuration.Config)":"Akka.Actor.Deployer.yml","Akka.Actor.IExtension":"Akka.Actor.IExtension.yml","Akka.Actor.IExtensionId":"Akka.Actor.IExtensionId.yml","Akka.Actor.IExtensionId.Apply(Akka.Actor.ActorSystem)":"Akka.Actor.IExtensionId.yml","Akka.Actor.IExtensionId.Get(Akka.Actor.ActorSystem)":"Akka.Actor.IExtensionId.yml","Akka.Actor.IExtensionId.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.Actor.IExtensionId.yml","Akka.Actor.IExtensionId.ExtensionType":"Akka.Actor.IExtensionId.yml","Akka.Actor.IExtensionId`1":"Akka.Actor.IExtensionId-1.yml","Akka.Actor.IExtensionId`1.Apply(Akka.Actor.ActorSystem)":"Akka.Actor.IExtensionId-1.yml","Akka.Actor.IExtensionId`1.Get(Akka.Actor.ActorSystem)":"Akka.Actor.IExtensionId-1.yml","Akka.Actor.IExtensionId`1.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.Actor.IExtensionId-1.yml","Akka.Actor.ActorSystemWithExtensions":"Akka.Actor.ActorSystemWithExtensions.yml","Akka.Actor.ActorSystemWithExtensions.WithExtension``1(Akka.Actor.ActorSystem)":"Akka.Actor.ActorSystemWithExtensions.yml","Akka.Actor.ActorSystemWithExtensions.WithExtension``1(Akka.Actor.ActorSystem,System.Type)":"Akka.Actor.ActorSystemWithExtensions.yml","Akka.Actor.ActorSystemWithExtensions.WithExtension``2(Akka.Actor.ActorSystem)":"Akka.Actor.ActorSystemWithExtensions.yml","Akka.Actor.ExtensionIdProvider`1":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Apply(Akka.Actor.ActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Akka#Actor#IExtensionId#Get(Akka.Actor.ActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Akka#Actor#IExtensionId#CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.ExtensionType":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Akka#Actor#IExtensionId#Apply(Akka.Actor.ActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Get(Akka.Actor.ActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.Equals(System.Object)":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.ExtensionIdProvider`1.GetHashCode":"Akka.Actor.ExtensionIdProvider-1.yml","Akka.Actor.FSMBase":"Akka.Actor.FSMBase.yml","Akka.Actor.FSMBase.CurrentState`1":"Akka.Actor.FSMBase.CurrentState-1.yml","Akka.Actor.FSMBase.CurrentState`1.#ctor(Akka.Actor.IActorRef,`0)":"Akka.Actor.FSMBase.CurrentState-1.yml","Akka.Actor.FSMBase.CurrentState`1.FsmRef":"Akka.Actor.FSMBase.CurrentState-1.yml","Akka.Actor.FSMBase.CurrentState`1.State":"Akka.Actor.FSMBase.CurrentState-1.yml","Akka.Actor.FSMBase.Transition`1":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.Transition`1.#ctor(Akka.Actor.IActorRef,`0,`0)":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.Transition`1.FsmRef":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.Transition`1.From":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.Transition`1.To":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.Transition`1.ToString":"Akka.Actor.FSMBase.Transition-1.yml","Akka.Actor.FSMBase.SubscribeTransitionCallBack":"Akka.Actor.FSMBase.SubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.SubscribeTransitionCallBack.#ctor(Akka.Actor.IActorRef)":"Akka.Actor.FSMBase.SubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.SubscribeTransitionCallBack.ActorRef":"Akka.Actor.FSMBase.SubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.UnsubscribeTransitionCallBack":"Akka.Actor.FSMBase.UnsubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.UnsubscribeTransitionCallBack.#ctor(Akka.Actor.IActorRef)":"Akka.Actor.FSMBase.UnsubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.UnsubscribeTransitionCallBack.ActorRef":"Akka.Actor.FSMBase.UnsubscribeTransitionCallBack.yml","Akka.Actor.FSMBase.Reason":"Akka.Actor.FSMBase.Reason.yml","Akka.Actor.FSMBase.Normal":"Akka.Actor.FSMBase.Normal.yml","Akka.Actor.FSMBase.Shutdown":"Akka.Actor.FSMBase.Shutdown.yml","Akka.Actor.FSMBase.Failure":"Akka.Actor.FSMBase.Failure.yml","Akka.Actor.FSMBase.Failure.#ctor(System.Object)":"Akka.Actor.FSMBase.Failure.yml","Akka.Actor.FSMBase.Failure.Cause":"Akka.Actor.FSMBase.Failure.yml","Akka.Actor.FSMBase.StateTimeout":"Akka.Actor.FSMBase.StateTimeout.yml","Akka.Actor.FSMBase.LogEntry`2":"Akka.Actor.FSMBase.LogEntry-2.yml","Akka.Actor.FSMBase.LogEntry`2.#ctor(`0,`1,System.Object)":"Akka.Actor.FSMBase.LogEntry-2.yml","Akka.Actor.FSMBase.LogEntry`2.StateName":"Akka.Actor.FSMBase.LogEntry-2.yml","Akka.Actor.FSMBase.LogEntry`2.StateData":"Akka.Actor.FSMBase.LogEntry-2.yml","Akka.Actor.FSMBase.LogEntry`2.FsmEvent":"Akka.Actor.FSMBase.LogEntry-2.yml","Akka.Actor.FSMBase.State`2":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.#ctor(`0,`1,System.Nullable{System.TimeSpan},Akka.Actor.FSMBase.Reason,System.Collections.Generic.List{System.Object})":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.StateName":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.StateData":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Timeout":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.StopReason":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Replies":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Copy(System.Nullable{System.TimeSpan},Akka.Actor.FSMBase.Reason,System.Collections.Generic.List{System.Object})":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.ForMax(System.TimeSpan)":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Replying(System.Object)":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Using(`1)":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.ToString":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Equals(Akka.Actor.FSMBase.State{`0,`1})":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.Equals(System.Object)":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.State`2.GetHashCode":"Akka.Actor.FSMBase.State-2.yml","Akka.Actor.FSMBase.Event`1":"Akka.Actor.FSMBase.Event-1.yml","Akka.Actor.FSMBase.Event`1.#ctor(System.Object,`0)":"Akka.Actor.FSMBase.Event-1.yml","Akka.Actor.FSMBase.Event`1.FsmEvent":"Akka.Actor.FSMBase.Event-1.yml","Akka.Actor.FSMBase.Event`1.StateData":"Akka.Actor.FSMBase.Event-1.yml","Akka.Actor.FSMBase.Event`1.ToString":"Akka.Actor.FSMBase.Event-1.yml","Akka.Actor.FSMBase.StopEvent`2":"Akka.Actor.FSMBase.StopEvent-2.yml","Akka.Actor.FSMBase.StopEvent`2.#ctor(Akka.Actor.FSMBase.Reason,`0,`1)":"Akka.Actor.FSMBase.StopEvent-2.yml","Akka.Actor.FSMBase.StopEvent`2.Reason":"Akka.Actor.FSMBase.StopEvent-2.yml","Akka.Actor.FSMBase.StopEvent`2.TerminatedState":"Akka.Actor.FSMBase.StopEvent-2.yml","Akka.Actor.FSMBase.StopEvent`2.StateData":"Akka.Actor.FSMBase.StopEvent-2.yml","Akka.Actor.FSM`2":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.#ctor":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.When(`0,Akka.Actor.FSM{`0,`1}.StateFunction,System.Nullable{System.TimeSpan})":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.StartWith(`0,`1,System.Nullable{System.TimeSpan})":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.GoTo(`0)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.GoTo(`0,`1)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Stay":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Stop":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Stop(Akka.Actor.FSMBase.Reason)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Stop(Akka.Actor.FSMBase.Reason,`1)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.SetTimer(System.String,System.Object,System.TimeSpan,System.Boolean)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.CancelTimer(System.String)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.IsTimerActive(System.String)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.SetStateTimeout(`0,System.Nullable{System.TimeSpan})":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Akka#Actor#Internal#IInternalSupportsTestFSMRef{TState,TData}#IsStateTimerActive":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.OnTransition(Akka.Actor.FSM{`0,`1}.TransitionHandler)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.OnTermination(System.Action{Akka.Actor.FSMBase.StopEvent{`0,`1}})":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.WhenUnhandled(Akka.Actor.FSM{`0,`1}.StateFunction)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Initialize":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.StateName":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.StateData":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.NextStateData":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Transform(Akka.Actor.FSM{`0,`1}.StateFunction)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Listeners":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.DebugEvent":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Receive(System.Object)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.Akka#Actor#Internal#IInternalSupportsTestFSMRef{TState,TData}#ApplyState(Akka.Actor.FSMBase.State{`0,`1})":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.PostStop":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.LogTermination(Akka.Actor.FSMBase.Reason)":"Akka.Actor.FSM-2.yml","Akka.Actor.FSM`2.StateFunction":"Akka.Actor.FSM-2.StateFunction.yml","Akka.Actor.FSM`2.TransitionHandler":"Akka.Actor.FSM-2.TransitionHandler.yml","Akka.Actor.FSM`2.TransformHelper":"Akka.Actor.FSM-2.TransformHelper.yml","Akka.Actor.FSM`2.TransformHelper.#ctor(Akka.Actor.FSM{`0,`1}.StateFunction)":"Akka.Actor.FSM-2.TransformHelper.yml","Akka.Actor.FSM`2.TransformHelper.Func":"Akka.Actor.FSM-2.TransformHelper.yml","Akka.Actor.FSM`2.TransformHelper.Using(System.Func{Akka.Actor.FSMBase.State{`0,`1},Akka.Actor.FSMBase.State{`0,`1}})":"Akka.Actor.FSM-2.TransformHelper.yml","Akka.Actor.ILoggingFSM":"Akka.Actor.ILoggingFSM.yml","Akka.Actor.GracefulStopSupport":"Akka.Actor.GracefulStopSupport.yml","Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.IActorRef,System.TimeSpan)":"Akka.Actor.GracefulStopSupport.yml","Akka.Actor.GracefulStopSupport.GracefulStop(Akka.Actor.IActorRef,System.TimeSpan,System.Object)":"Akka.Actor.GracefulStopSupport.yml","Akka.Actor.IUntypedActorContext":"Akka.Actor.IUntypedActorContext.yml","Akka.Actor.IUntypedActorContext.Become(Akka.Actor.UntypedReceive,System.Boolean)":"Akka.Actor.IUntypedActorContext.yml","Akka.Actor.IUntypedActorContext.Become(Akka.Actor.UntypedReceive)":"Akka.Actor.IUntypedActorContext.yml","Akka.Actor.IUntypedActorContext.BecomeStacked(Akka.Actor.UntypedReceive)":"Akka.Actor.IUntypedActorContext.yml","Akka.Actor.INoSerializationVerificationNeeded":"Akka.Actor.INoSerializationVerificationNeeded.yml","Akka.Actor.IPossiblyHarmful":"Akka.Actor.IPossiblyHarmful.yml","Akka.Actor.PipeToSupport":"Akka.Actor.PipeToSupport.yml","Akka.Actor.PipeToSupport.PipeTo``1(System.Threading.Tasks.Task{``0},Akka.Actor.ICanTell,Akka.Actor.IActorRef,System.Func{``0,System.Object},System.Func{System.Exception,System.Object})":"Akka.Actor.PipeToSupport.yml","Akka.Actor.PipeToSupport.PipeTo(System.Threading.Tasks.Task,Akka.Actor.ICanTell,Akka.Actor.IActorRef)":"Akka.Actor.PipeToSupport.yml","Akka.Actor.Receive":"Akka.Actor.Receive.yml","Akka.Actor.ITellScheduler":"Akka.Actor.ITellScheduler.yml","Akka.Actor.ITellScheduler.ScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ITellScheduler.yml","Akka.Actor.ITellScheduler.ScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.ITellScheduler.yml","Akka.Actor.ITellScheduler.ScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.ITellScheduler.yml","Akka.Actor.ITellScheduler.ScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.ITellScheduler.yml","Akka.Actor.HashedWheelTimerScheduler":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.#ctor(Akka.Configuration.Config,Akka.Event.ILoggingAdapter)":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.TimeNow":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.MonotonicClock":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.HighResMonotonicClock":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.InternalScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.InternalScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.InternalScheduleOnce(System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.InternalScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.HashedWheelTimerScheduler.Dispose":"Akka.Actor.HashedWheelTimerScheduler.yml","Akka.Actor.SchedulerBase":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.SchedulerConfig":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Log":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.#ctor(Akka.Configuration.Config,Akka.Event.ILoggingAdapter)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#ITellScheduler#ScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#ITellScheduler#ScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#ITellScheduler#ScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#ITellScheduler#ScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#IActionScheduler#ScheduleOnce(System.TimeSpan,System.Action)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#IActionScheduler#ScheduleOnce(System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#IActionScheduler#ScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#IActionScheduler#ScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#IScheduler#Advanced":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.Akka#Actor#ITimeProvider#Now":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.TimeNow":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.MonotonicClock":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.HighResMonotonicClock":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.InternalScheduleTellOnce(System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.InternalScheduleTellRepeatedly(System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.InternalScheduleOnce(System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.InternalScheduleRepeatedly(System.TimeSpan,System.TimeSpan,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.ValidateInterval(System.TimeSpan,System.String)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerBase.ValidateDelay(System.TimeSpan,System.String)":"Akka.Actor.SchedulerBase.yml","Akka.Actor.SchedulerException":"Akka.Actor.SchedulerException.yml","Akka.Actor.SchedulerException.#ctor(System.String)":"Akka.Actor.SchedulerException.yml","Akka.Actor.SchedulerExtensions":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellOnce(Akka.Actor.ITellScheduler,System.Int32,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellRepeatedly(Akka.Actor.ITellScheduler,System.Int32,System.Int32,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleOnce(Akka.Actor.IActionScheduler,System.Int32,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleRepeatedly(Akka.Actor.IActionScheduler,System.Int32,System.Int32,System.Action,Akka.Actor.ICancelable)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellOnceCancelable(Akka.Actor.IScheduler,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellOnceCancelable(Akka.Actor.IScheduler,System.Int32,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellRepeatedlyCancelable(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleTellRepeatedlyCancelable(Akka.Actor.IScheduler,System.Int32,System.Int32,Akka.Actor.ICanTell,System.Object,Akka.Actor.IActorRef)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleOnceCancelable(Akka.Actor.IActionScheduler,System.TimeSpan,System.Action)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleOnceCancelable(Akka.Actor.IActionScheduler,System.Int32,System.Action)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleRepeatedlyCancelable(Akka.Actor.IActionScheduler,System.TimeSpan,System.TimeSpan,System.Action)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.SchedulerExtensions.ScheduleRepeatedlyCancelable(Akka.Actor.IActionScheduler,System.Int32,System.Int32,System.Action)":"Akka.Actor.SchedulerExtensions.yml","Akka.Actor.Scope":"Akka.Actor.Scope.yml","Akka.Actor.Scope.Local":"Akka.Actor.Scope.yml","Akka.Actor.Scope.WithFallback(Akka.Actor.Scope)":"Akka.Actor.Scope.yml","Akka.Actor.Scope.Copy":"Akka.Actor.Scope.yml","Akka.Actor.Scope.Equals(Akka.Actor.Scope)":"Akka.Actor.Scope.yml","Akka.Actor.Settings":"Akka.Actor.Settings.yml","Akka.Actor.Settings.InjectTopLevelFallback(Akka.Configuration.Config)":"Akka.Actor.Settings.yml","Akka.Actor.Settings.#ctor(Akka.Actor.ActorSystem,Akka.Configuration.Config)":"Akka.Actor.Settings.yml","Akka.Actor.Settings.System":"Akka.Actor.Settings.yml","Akka.Actor.Settings.Config":"Akka.Actor.Settings.yml","Akka.Actor.Settings.ConfigVersion":"Akka.Actor.Settings.yml","Akka.Actor.Settings.ProviderClass":"Akka.Actor.Settings.yml","Akka.Actor.Settings.SupervisorStrategyClass":"Akka.Actor.Settings.yml","Akka.Actor.Settings.SerializeAllMessages":"Akka.Actor.Settings.yml","Akka.Actor.Settings.SerializeAllCreators":"Akka.Actor.Settings.yml","Akka.Actor.Settings.AskTimeout":"Akka.Actor.Settings.yml","Akka.Actor.Settings.CreationTimeout":"Akka.Actor.Settings.yml","Akka.Actor.Settings.UnstartedPushTimeout":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LogLevel":"Akka.Actor.Settings.yml","Akka.Actor.Settings.StdoutLogLevel":"Akka.Actor.Settings.yml","Akka.Actor.Settings.Loggers":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LoggersDispatcher":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LoggerStartTimeout":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LogConfigOnStart":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LogDeadLetters":"Akka.Actor.Settings.yml","Akka.Actor.Settings.LogDeadLettersDuringShutdown":"Akka.Actor.Settings.yml","Akka.Actor.Settings.AddLoggingReceive":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DebugAutoReceive":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DebugEventStream":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DebugUnhandledMessage":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DebugRouterMisconfiguration":"Akka.Actor.Settings.yml","Akka.Actor.Settings.Home":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DebugLifecycle":"Akka.Actor.Settings.yml","Akka.Actor.Settings.FsmDebugEvent":"Akka.Actor.Settings.yml","Akka.Actor.Settings.DefaultVirtualNodesFactor":"Akka.Actor.Settings.yml","Akka.Actor.Settings.SchedulerClass":"Akka.Actor.Settings.yml","Akka.Actor.Settings.SchedulerShutdownTimeout":"Akka.Actor.Settings.yml","Akka.Actor.Settings.ToString":"Akka.Actor.Settings.yml","Akka.Actor.IActorStash":"Akka.Actor.IActorStash.yml","Akka.Actor.IActorStash.Stash":"Akka.Actor.IActorStash.yml","Akka.Actor.ActorStashPlugin":"Akka.Actor.ActorStashPlugin.yml","Akka.Actor.ActorStashPlugin.CanBeAppliedTo(System.Type)":"Akka.Actor.ActorStashPlugin.yml","Akka.Actor.ActorStashPlugin.AfterIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorStashPlugin.yml","Akka.Actor.ActorStashPlugin.BeforeIncarnated(Akka.Actor.ActorBase,Akka.Actor.IActorContext)":"Akka.Actor.ActorStashPlugin.yml","Akka.Actor.IStash":"Akka.Actor.IStash.yml","Akka.Actor.IStash.Stash":"Akka.Actor.IStash.yml","Akka.Actor.IStash.Unstash":"Akka.Actor.IStash.yml","Akka.Actor.IStash.UnstashAll":"Akka.Actor.IStash.yml","Akka.Actor.IStash.UnstashAll(System.Func{Akka.Actor.Envelope,System.Boolean})":"Akka.Actor.IStash.yml","Akka.Actor.IStash.ClearStash":"Akka.Actor.IStash.yml","Akka.Actor.IStash.Prepend(System.Collections.Generic.IEnumerable{Akka.Actor.Envelope})":"Akka.Actor.IStash.yml","Akka.Actor.UntypedActorWithBoundedStash":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.CurrentStash":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.Akka#Actor#IActorStash#Stash":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.Stash":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.Unstash":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.UnstashAll":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.UnstashAll(System.Func{Akka.Actor.Envelope,System.Boolean})":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.PreRestart(System.Exception,System.Object)":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.UntypedActorWithBoundedStash.PostStop":"Akka.Actor.UntypedActorWithBoundedStash.yml","Akka.Actor.StashFactory":"Akka.Actor.StashFactory.yml","Akka.Actor.StashFactory.CreateStash``1(Akka.Actor.IActorContext)":"Akka.Actor.StashFactory.yml","Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,Akka.Actor.IActorStash)":"Akka.Actor.StashFactory.yml","Akka.Actor.StashFactory.CreateStash(Akka.Actor.IActorContext,System.Type)":"Akka.Actor.StashFactory.yml","Akka.Actor.StashOverflowException":"Akka.Actor.StashOverflowException.yml","Akka.Actor.StashOverflowException.#ctor(System.String,System.Exception)":"Akka.Actor.StashOverflowException.yml","Akka.Actor.StashOverflowException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.StashOverflowException.yml","Akka.Actor.UntypedActorWithUnboundedStash":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.CurrentStash":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.Akka#Actor#IActorStash#Stash":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.Stash":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.Unstash":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.UnstashAll":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.UnstashAll(System.Func{Akka.Actor.Envelope,System.Boolean})":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.PreRestart(System.Exception,System.Object)":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.UntypedActorWithUnboundedStash.PostStop":"Akka.Actor.UntypedActorWithUnboundedStash.yml","Akka.Actor.IWithBoundedStash":"Akka.Actor.IWithBoundedStash.yml","Akka.Actor.IWithUnboundedStash":"Akka.Actor.IWithUnboundedStash.yml","Akka.Actor.AkkaException":"Akka.Actor.AkkaException.yml","Akka.Actor.AkkaException.#ctor":"Akka.Actor.AkkaException.yml","Akka.Actor.AkkaException.#ctor(System.String,System.Exception)":"Akka.Actor.AkkaException.yml","Akka.Actor.AkkaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.AkkaException.yml","Akka.Actor.AkkaException.Cause":"Akka.Actor.AkkaException.yml","Akka.Actor.InvalidActorNameException":"Akka.Actor.InvalidActorNameException.yml","Akka.Actor.InvalidActorNameException.#ctor(System.String)":"Akka.Actor.InvalidActorNameException.yml","Akka.Actor.InvalidActorNameException.#ctor(System.String,System.Exception)":"Akka.Actor.InvalidActorNameException.yml","Akka.Actor.InvalidActorNameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.InvalidActorNameException.yml","Akka.Actor.AskTimeoutException":"Akka.Actor.AskTimeoutException.yml","Akka.Actor.AskTimeoutException.#ctor(System.String)":"Akka.Actor.AskTimeoutException.yml","Akka.Actor.AskTimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.AskTimeoutException.yml","Akka.Actor.ActorInterruptedException":"Akka.Actor.ActorInterruptedException.yml","Akka.Actor.ActorInterruptedException.#ctor(System.String,System.Exception)":"Akka.Actor.ActorInterruptedException.yml","Akka.Actor.ActorInitializationException":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.#ctor":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.#ctor(System.String)":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.#ctor(System.String,System.Exception)":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.#ctor(Akka.Actor.IActorRef,System.String,System.Exception)":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.Actor":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.ActorInitializationException.ToString":"Akka.Actor.ActorInitializationException.yml","Akka.Actor.LoggerInitializationException":"Akka.Actor.LoggerInitializationException.yml","Akka.Actor.LoggerInitializationException.#ctor":"Akka.Actor.LoggerInitializationException.yml","Akka.Actor.LoggerInitializationException.#ctor(System.String)":"Akka.Actor.LoggerInitializationException.yml","Akka.Actor.LoggerInitializationException.#ctor(System.String,System.Exception)":"Akka.Actor.LoggerInitializationException.yml","Akka.Actor.LoggerInitializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.LoggerInitializationException.yml","Akka.Actor.ActorKilledException":"Akka.Actor.ActorKilledException.yml","Akka.Actor.ActorKilledException.#ctor(System.String)":"Akka.Actor.ActorKilledException.yml","Akka.Actor.ActorKilledException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.ActorKilledException.yml","Akka.Actor.IllegalActorStateException":"Akka.Actor.IllegalActorStateException.yml","Akka.Actor.IllegalActorStateException.#ctor(System.String)":"Akka.Actor.IllegalActorStateException.yml","Akka.Actor.IllegalActorStateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.IllegalActorStateException.yml","Akka.Actor.IllegalActorNameException":"Akka.Actor.IllegalActorNameException.yml","Akka.Actor.IllegalActorNameException.#ctor(System.String)":"Akka.Actor.IllegalActorNameException.yml","Akka.Actor.IllegalActorNameException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.IllegalActorNameException.yml","Akka.Actor.DeathPactException":"Akka.Actor.DeathPactException.yml","Akka.Actor.DeathPactException.#ctor(Akka.Actor.IActorRef)":"Akka.Actor.DeathPactException.yml","Akka.Actor.DeathPactException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.DeathPactException.yml","Akka.Actor.DeathPactException.DeadActor":"Akka.Actor.DeathPactException.yml","Akka.Actor.PreRestartException":"Akka.Actor.PreRestartException.yml","Akka.Actor.PreRestartException.#ctor(Akka.Actor.IActorRef,System.Exception,System.Exception,System.Object)":"Akka.Actor.PreRestartException.yml","Akka.Actor.PreRestartException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.PreRestartException.yml","Akka.Actor.PostRestartException":"Akka.Actor.PostRestartException.yml","Akka.Actor.PostRestartException.#ctor(Akka.Actor.IActorRef,System.Exception,System.Exception)":"Akka.Actor.PostRestartException.yml","Akka.Actor.PostRestartException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.PostRestartException.yml","Akka.Actor.PostRestartException.OriginalCause":"Akka.Actor.PostRestartException.yml","Akka.Actor.ActorNotFoundException":"Akka.Actor.ActorNotFoundException.yml","Akka.Actor.ActorNotFoundException.#ctor":"Akka.Actor.ActorNotFoundException.yml","Akka.Actor.ActorNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.ActorNotFoundException.yml","Akka.Actor.ActorNotFoundException.#ctor(System.String,System.Exception)":"Akka.Actor.ActorNotFoundException.yml","Akka.Actor.InvalidMessageException":"Akka.Actor.InvalidMessageException.yml","Akka.Actor.InvalidMessageException.#ctor":"Akka.Actor.InvalidMessageException.yml","Akka.Actor.InvalidMessageException.#ctor(System.String)":"Akka.Actor.InvalidMessageException.yml","Akka.Actor.InvalidMessageException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Actor.InvalidMessageException.yml","Akka.Actor.ICanWatch":"Akka.Actor.ICanWatch.yml","Akka.Actor.ICanWatch.Watch(Akka.Actor.IActorRef)":"Akka.Actor.ICanWatch.yml","Akka.Actor.ICanWatch.Unwatch(Akka.Actor.IActorRef)":"Akka.Actor.ICanWatch.yml","Akka.Actor.IActorContext":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Self":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Props":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Dispatcher":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Sender":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.System":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Parent":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Become(Akka.Actor.Receive)":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.BecomeStacked(Akka.Actor.Receive)":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Become(Akka.Actor.Receive,System.Boolean)":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.UnbecomeStacked":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Unbecome":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Child(System.String)":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.GetChildren":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.SetReceiveTimeout(System.Nullable{System.TimeSpan})":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.ReceiveTimeout":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorContext.Stop(Akka.Actor.IActorRef)":"Akka.Actor.IActorContext.yml","Akka.Actor.IActorRefFactory":"Akka.Actor.IActorRefFactory.yml","Akka.Actor.IActorRefFactory.ActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.IActorRefFactory.yml","Akka.Actor.IActorRefFactory.ActorSelection(Akka.Actor.ActorPath)":"Akka.Actor.IActorRefFactory.yml","Akka.Actor.IActorRefFactory.ActorSelection(System.String)":"Akka.Actor.IActorRefFactory.yml","Akka.Actor.Props":"Akka.Actor.Props.yml","Akka.Actor.Props.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Props.yml","Akka.Actor.Props.Equals(Akka.Actor.Props)":"Akka.Actor.Props.yml","Akka.Actor.Props.Equals(System.Object)":"Akka.Actor.Props.yml","Akka.Actor.Props.GetHashCode":"Akka.Actor.Props.yml","Akka.Actor.Props.None":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(Akka.Actor.Props)":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(System.Type,System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(System.Type)":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(System.Type,Akka.Actor.SupervisorStrategy,System.Collections.Generic.IEnumerable{System.Object})":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(System.Type,Akka.Actor.SupervisorStrategy,System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(Akka.Actor.Deploy,System.Type,System.Collections.Generic.IEnumerable{System.Object})":"Akka.Actor.Props.yml","Akka.Actor.Props.#ctor(Akka.Actor.Deploy,System.Type,System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.Type":"Akka.Actor.Props.yml","Akka.Actor.Props.Dispatcher":"Akka.Actor.Props.yml","Akka.Actor.Props.Mailbox":"Akka.Actor.Props.yml","Akka.Actor.Props.TypeName":"Akka.Actor.Props.yml","Akka.Actor.Props.RouterConfig":"Akka.Actor.Props.yml","Akka.Actor.Props.Deploy":"Akka.Actor.Props.yml","Akka.Actor.Props.SupervisorStrategy":"Akka.Actor.Props.yml","Akka.Actor.Props.Empty":"Akka.Actor.Props.yml","Akka.Actor.Props.Arguments":"Akka.Actor.Props.yml","Akka.Actor.Props.Create``1(System.Linq.Expressions.Expression{System.Func{``0}},Akka.Actor.SupervisorStrategy)":"Akka.Actor.Props.yml","Akka.Actor.Props.Create``1(System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.CreateBy``1(System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.Create``1(Akka.Actor.SupervisorStrategy)":"Akka.Actor.Props.yml","Akka.Actor.Props.Create(System.Type,System.Object[])":"Akka.Actor.Props.yml","Akka.Actor.Props.WithMailbox(System.String)":"Akka.Actor.Props.yml","Akka.Actor.Props.WithDispatcher(System.String)":"Akka.Actor.Props.yml","Akka.Actor.Props.WithRouter(Akka.Routing.RouterConfig)":"Akka.Actor.Props.yml","Akka.Actor.Props.WithDeploy(Akka.Actor.Deploy)":"Akka.Actor.Props.yml","Akka.Actor.Props.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Actor.Props.yml","Akka.Actor.Props.NewActor":"Akka.Actor.Props.yml","Akka.Actor.Props.Copy":"Akka.Actor.Props.yml","Akka.Actor.Props.PropsSurrogate":"Akka.Actor.Props.PropsSurrogate.yml","Akka.Actor.Props.PropsSurrogate.Type":"Akka.Actor.Props.PropsSurrogate.yml","Akka.Actor.Props.PropsSurrogate.Deploy":"Akka.Actor.Props.PropsSurrogate.yml","Akka.Actor.Props.PropsSurrogate.Arguments":"Akka.Actor.Props.PropsSurrogate.yml","Akka.Actor.Props.PropsSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.Props.PropsSurrogate.yml","Akka.Actor.TerminatedProps":"Akka.Actor.TerminatedProps.yml","Akka.Actor.TerminatedProps.NewActor":"Akka.Actor.TerminatedProps.yml","Akka.Actor.IIndirectActorProducer":"Akka.Actor.IIndirectActorProducer.yml","Akka.Actor.IIndirectActorProducer.Produce":"Akka.Actor.IIndirectActorProducer.yml","Akka.Actor.IIndirectActorProducer.ActorType":"Akka.Actor.IIndirectActorProducer.yml","Akka.Actor.IIndirectActorProducer.Release(Akka.Actor.ActorBase)":"Akka.Actor.IIndirectActorProducer.yml","Akka.Actor.SupervisorStrategy":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.Decider":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.Handle(Akka.Actor.IActorRef,System.Exception)":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.HandleFailure(Akka.Actor.ActorCell,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.HandleFailure(Akka.Actor.ActorCell,Akka.Actor.IActorRef,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.DefaultDecider":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.RestartChild(Akka.Actor.IActorRef,System.Exception,System.Boolean)":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,Akka.Actor.IActorRef,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.ResumeChild(Akka.Actor.IActorRef,System.Exception)":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.LogFailure(Akka.Actor.IActorContext,Akka.Actor.IActorRef,System.Exception,Akka.Actor.Directive)":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.LoggingEnabled":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.DefaultStrategy":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.StoppingStrategy":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.IActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.IInternalActorRef})":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.SupervisorStrategy.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.SupervisorStrategy.yml","Akka.Actor.OneForOneStrategy":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.MaxNumberOfRetries":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.WithinTimeRangeMilliseconds":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.Decider":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Nullable{System.Int32},System.Nullable{System.TimeSpan},System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Nullable{System.Int32},System.Nullable{System.TimeSpan},Akka.Actor.IDecider)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Int32,System.Int32,System.Func{System.Exception,Akka.Actor.Directive},System.Boolean)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Int32,System.Int32,Akka.Actor.IDecider,System.Boolean)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(System.Func{System.Exception,Akka.Actor.Directive},System.Boolean)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor(Akka.Actor.IDecider)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.#ctor":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.Handle(Akka.Actor.IActorRef,System.Exception)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,Akka.Actor.IActorRef,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.IActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.IInternalActorRef})":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.Equals(Akka.Actor.OneForOneStrategy)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.Equals(System.Object)":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.GetHashCode":"Akka.Actor.OneForOneStrategy.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.MaxNumberOfRetries":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.WithinTimeRangeMilliseconds":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.Decider":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.LoggingEnabled":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.OneForOneStrategy.OneForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.MaxNumberOfRetries":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.WithinTimeRangeMilliseconds":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.Decider":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(System.Nullable{System.Int32},System.Nullable{System.TimeSpan},System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(System.Nullable{System.Int32},System.Nullable{System.TimeSpan},Akka.Actor.IDecider)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(System.Int32,System.Int32,System.Func{System.Exception,Akka.Actor.Directive},System.Boolean)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(System.Int32,System.Int32,Akka.Actor.IDecider,System.Boolean)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor(Akka.Actor.IDecider)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.#ctor":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.Handle(Akka.Actor.IActorRef,System.Exception)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.ProcessFailure(Akka.Actor.IActorContext,System.Boolean,Akka.Actor.IActorRef,System.Exception,Akka.Actor.Internal.ChildRestartStats,System.Collections.Generic.IReadOnlyCollection{Akka.Actor.Internal.ChildRestartStats})":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.HandleChildTerminated(Akka.Actor.IActorContext,Akka.Actor.IActorRef,System.Collections.Generic.IEnumerable{Akka.Actor.IInternalActorRef})":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.Equals(Akka.Actor.AllForOneStrategy)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.Equals(System.Object)":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.GetHashCode":"Akka.Actor.AllForOneStrategy.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.MaxNumberOfRetries":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.WithinTimeRangeMilliseconds":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.Decider":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.LoggingEnabled":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Actor.AllForOneStrategy.AllForOneStrategySurrogate.yml","Akka.Actor.Failures":"Akka.Actor.Failures.yml","Akka.Actor.Failures.#ctor":"Akka.Actor.Failures.yml","Akka.Actor.Failures.Entries":"Akka.Actor.Failures.yml","Akka.Actor.Failure":"Akka.Actor.Failure.yml","Akka.Actor.Failure.Exception":"Akka.Actor.Failure.yml","Akka.Actor.Failure.Timestamp":"Akka.Actor.Failure.yml","Akka.Actor.Directive":"Akka.Actor.Directive.yml","Akka.Actor.Directive.Resume":"Akka.Actor.Directive.yml","Akka.Actor.Directive.Restart":"Akka.Actor.Directive.yml","Akka.Actor.Directive.Escalate":"Akka.Actor.Directive.yml","Akka.Actor.Directive.Stop":"Akka.Actor.Directive.yml","Akka.Actor.DirectiveExtensions":"Akka.Actor.DirectiveExtensions.yml","Akka.Actor.DirectiveExtensions.When``1(Akka.Actor.Directive)":"Akka.Actor.DirectiveExtensions.yml","Akka.Actor.IDecider":"Akka.Actor.IDecider.yml","Akka.Actor.IDecider.Decide(System.Exception)":"Akka.Actor.IDecider.yml","Akka.Actor.Decider":"Akka.Actor.Decider.yml","Akka.Actor.Decider.From(Akka.Actor.Directive,System.Collections.Generic.KeyValuePair{System.Type,Akka.Actor.Directive}[])":"Akka.Actor.Decider.yml","Akka.Actor.Decider.From(Akka.Actor.Directive,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.Type,Akka.Actor.Directive}})":"Akka.Actor.Decider.yml","Akka.Actor.Decider.From(System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.Decider.yml","Akka.Actor.LocalOnlyDecider":"Akka.Actor.LocalOnlyDecider.yml","Akka.Actor.LocalOnlyDecider.#ctor(System.Func{System.Exception,Akka.Actor.Directive})":"Akka.Actor.LocalOnlyDecider.yml","Akka.Actor.LocalOnlyDecider.Decide(System.Exception)":"Akka.Actor.LocalOnlyDecider.yml","Akka.Actor.DeployableDecider":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.#ctor":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.#ctor(Akka.Actor.Directive,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.Type,Akka.Actor.Directive}})":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.#ctor(Akka.Actor.Directive,System.Collections.Generic.KeyValuePair{System.Type,Akka.Actor.Directive}[])":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.DefaultDirective":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.Pairs":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.Decide(System.Exception)":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.Equals(Akka.Actor.DeployableDecider)":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.Equals(System.Object)":"Akka.Actor.DeployableDecider.yml","Akka.Actor.DeployableDecider.GetHashCode":"Akka.Actor.DeployableDecider.yml","Akka.Actor.SupervisorStrategyConfigurator":"Akka.Actor.SupervisorStrategyConfigurator.yml","Akka.Actor.SupervisorStrategyConfigurator.Create":"Akka.Actor.SupervisorStrategyConfigurator.yml","Akka.Actor.SupervisorStrategyConfigurator.CreateConfigurator(System.String)":"Akka.Actor.SupervisorStrategyConfigurator.yml","Akka.Actor.DefaultSupervisorStrategy":"Akka.Actor.DefaultSupervisorStrategy.yml","Akka.Actor.DefaultSupervisorStrategy.Create":"Akka.Actor.DefaultSupervisorStrategy.yml","Akka.Actor.StoppingSupervisorStrategy":"Akka.Actor.StoppingSupervisorStrategy.yml","Akka.Actor.StoppingSupervisorStrategy.Create":"Akka.Actor.StoppingSupervisorStrategy.yml","Akka.Actor.UntypedActor":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.Receive(System.Object)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.RunTask(System.Action)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.RunTask(System.Func{System.Threading.Tasks.Task})":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.OnReceive(System.Object)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.Become(Akka.Actor.UntypedReceive,System.Boolean)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.Become(Akka.Actor.UntypedReceive)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.BecomeStacked(Akka.Actor.UntypedReceive)":"Akka.Actor.UntypedActor.yml","Akka.Actor.UntypedActor.Context":"Akka.Actor.UntypedActor.yml","Akka.Actor.LocalActorRef":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.#ctor(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.Props,Akka.Dispatch.MessageDispatcher,Akka.Dispatch.MailboxType,Akka.Actor.IInternalActorRef,Akka.Actor.ActorPath)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.NewActorCell(Akka.Actor.Internal.ActorSystemImpl,Akka.Actor.IInternalActorRef,Akka.Actor.Props,Akka.Dispatch.MessageDispatcher,Akka.Actor.IInternalActorRef)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Underlying":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Cell":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Provider":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Parent":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Children":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Start":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Stop":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Suspend":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.IsLocal":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.SendSystemMessage(Akka.Dispatch.SysMsg.ISystemMessage)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Path":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.System":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Props":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Dispatcher":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Supervisor":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.IsTerminated":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.MailboxType":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Resume(System.Exception)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.Restart(System.Exception)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.GetSingleChild(System.String)":"Akka.Actor.LocalActorRef.yml","Akka.Actor.LocalActorRef.GetChild(System.Collections.Generic.IEnumerable{System.String})":"Akka.Actor.LocalActorRef.yml","Akka.Actor.Envelope":"Akka.Actor.Envelope.yml","Akka.Actor.Envelope.#ctor(System.Object,Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Actor.Envelope.yml","Akka.Actor.Envelope.#ctor(System.Object,Akka.Actor.IActorRef)":"Akka.Actor.Envelope.yml","Akka.Actor.Envelope.Sender":"Akka.Actor.Envelope.yml","Akka.Actor.Envelope.Message":"Akka.Actor.Envelope.yml","Akka.Actor.Envelope.ToString":"Akka.Actor.Envelope.yml","Akka.Actor.UntypedReceive":"Akka.Actor.UntypedReceive.yml","Akka.Actor.IHandle`1":"Akka.Actor.IHandle-1.yml","Akka.Actor.IHandle`1.Handle(`0)":"Akka.Actor.IHandle-1.yml","Akka.Actor.TypedActor":"Akka.Actor.TypedActor.yml","Akka.Actor.TypedActor.Receive(System.Object)":"Akka.Actor.TypedActor.yml","Akka.Actor.INotInfluenceReceiveTimeout":"Akka.Actor.INotInfluenceReceiveTimeout.yml","Akka.Actor.Internal":"Akka.Actor.Internal.yml","Akka.Actor.Internal.IChildrenContainer":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Remove(Akka.Actor.IActorRef)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.TryGetByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.TryGetByRef(Akka.Actor.IActorRef,Akka.Actor.Internal.ChildRestartStats@)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Children":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Stats":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.ShallDie(Akka.Actor.IActorRef)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Reserve(System.String)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Unreserve(System.String)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.IsTerminating":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.IsNormal":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.IChildrenContainer.Contains(Akka.Actor.IActorRef)":"Akka.Actor.Internal.IChildrenContainer.yml","Akka.Actor.Internal.ChildrenContainerBase":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.#ctor(System.Collections.Immutable.IImmutableDictionary{System.String,Akka.Actor.Internal.IChildStats})":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.IsTerminating":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.IsNormal":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Remove(Akka.Actor.IActorRef)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Reserve(System.String)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.ShallDie(Akka.Actor.IActorRef)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Unreserve(System.String)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Children":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Stats":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.InternalChildren":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.TryGetByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.TryGetByRef(Akka.Actor.IActorRef,Akka.Actor.Internal.ChildRestartStats@)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.Contains(Akka.Actor.IActorRef)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.ChildrenContainerBase.ChildStatsAppender(System.Text.StringBuilder,System.Collections.Generic.KeyValuePair{System.String,Akka.Actor.Internal.IChildStats},System.Int32)":"Akka.Actor.Internal.ChildrenContainerBase.yml","Akka.Actor.Internal.IChildStats":"Akka.Actor.Internal.IChildStats.yml","Akka.Actor.Internal.ChildNameReserved":"Akka.Actor.Internal.ChildNameReserved.yml","Akka.Actor.Internal.ChildNameReserved.Instance":"Akka.Actor.Internal.ChildNameReserved.yml","Akka.Actor.Internal.ChildNameReserved.ToString":"Akka.Actor.Internal.ChildNameReserved.yml","Akka.Actor.Internal.ChildRestartStats":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.#ctor(Akka.Actor.IInternalActorRef,System.UInt32,System.Int64)":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.Uid":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.Child":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.MaxNrOfRetriesCount":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.RestartTimeWindowStartTicks":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.ChildRestartStats.RequestRestartPermission(System.Int32,System.Int32)":"Akka.Actor.Internal.ChildRestartStats.yml","Akka.Actor.Internal.EmptyChildrenContainer":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.#ctor":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Instance":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Remove(Akka.Actor.IActorRef)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.TryGetByName(System.String,Akka.Actor.Internal.IChildStats@)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.TryGetByRef(Akka.Actor.IActorRef,Akka.Actor.Internal.ChildRestartStats@)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Contains(Akka.Actor.IActorRef)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Children":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Stats":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.ShallDie(Akka.Actor.IActorRef)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Reserve(System.String)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.Unreserve(System.String)":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.ToString":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.IsTerminating":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.EmptyChildrenContainer.IsNormal":"Akka.Actor.Internal.EmptyChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.Create(System.Collections.Immutable.IImmutableDictionary{System.String,Akka.Actor.Internal.IChildStats})":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.Remove(Akka.Actor.IActorRef)":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.ShallDie(Akka.Actor.IActorRef)":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.Reserve(System.String)":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.Unreserve(System.String)":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.NormalChildrenContainer.ToString":"Akka.Actor.Internal.NormalChildrenContainer.yml","Akka.Actor.Internal.SuspendReason":"Akka.Actor.Internal.SuspendReason.yml","Akka.Actor.Internal.SuspendReason.IWaitingForChildren":"Akka.Actor.Internal.SuspendReason.IWaitingForChildren.yml","Akka.Actor.Internal.SuspendReason.Creation":"Akka.Actor.Internal.SuspendReason.Creation.yml","Akka.Actor.Internal.SuspendReason.Recreation":"Akka.Actor.Internal.SuspendReason.Recreation.yml","Akka.Actor.Internal.SuspendReason.Recreation.#ctor(System.Exception)":"Akka.Actor.Internal.SuspendReason.Recreation.yml","Akka.Actor.Internal.SuspendReason.Recreation.Cause":"Akka.Actor.Internal.SuspendReason.Recreation.yml","Akka.Actor.Internal.SuspendReason.Termination":"Akka.Actor.Internal.SuspendReason.Termination.yml","Akka.Actor.Internal.SuspendReason.Termination.Instance":"Akka.Actor.Internal.SuspendReason.Termination.yml","Akka.Actor.Internal.SuspendReason.UserRequest":"Akka.Actor.Internal.SuspendReason.UserRequest.yml","Akka.Actor.Internal.SuspendReason.UserRequest.Instance":"Akka.Actor.Internal.SuspendReason.UserRequest.yml","Akka.Actor.Internal.TerminatedChildrenContainer":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.Instance":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.Reserve(System.String)":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.IsTerminating":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.IsNormal":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatedChildrenContainer.ToString":"Akka.Actor.Internal.TerminatedChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.#ctor(System.Collections.Immutable.IImmutableDictionary{System.String,Akka.Actor.Internal.IChildStats},Akka.Actor.IActorRef,Akka.Actor.Internal.SuspendReason)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.#ctor(System.Collections.Immutable.IImmutableDictionary{System.String,Akka.Actor.Internal.IChildStats},System.Collections.Immutable.ImmutableHashSet{Akka.Actor.IActorRef},Akka.Actor.Internal.SuspendReason)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.Reason":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.Add(System.String,Akka.Actor.Internal.ChildRestartStats)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.Remove(Akka.Actor.IActorRef)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.ShallDie(Akka.Actor.IActorRef)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.Reserve(System.String)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.Unreserve(System.String)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.IsTerminating":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.IsNormal":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.ToString":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.TerminatingChildrenContainer.CreateCopyWithReason(Akka.Actor.Internal.SuspendReason)":"Akka.Actor.Internal.TerminatingChildrenContainer.yml","Akka.Actor.Internal.InternalCurrentActorCellKeeper":"Akka.Actor.Internal.InternalCurrentActorCellKeeper.yml","Akka.Actor.Internal.InternalCurrentActorCellKeeper.Current":"Akka.Actor.Internal.InternalCurrentActorCellKeeper.yml","Akka.Actor.Internal.IInternalSupportsTestFSMRef`2":"Akka.Actor.Internal.IInternalSupportsTestFSMRef-2.yml","Akka.Actor.Internal.IInternalSupportsTestFSMRef`2.ApplyState(Akka.Actor.FSMBase.State{`0,`1})":"Akka.Actor.Internal.IInternalSupportsTestFSMRef-2.yml","Akka.Actor.Internal.IInternalSupportsTestFSMRef`2.IsStateTimerActive":"Akka.Actor.Internal.IInternalSupportsTestFSMRef-2.yml","Akka.Actor.Internal.InternalActivateFsmLogging":"Akka.Actor.Internal.InternalActivateFsmLogging.yml","Akka.Actor.Internal.InternalActivateFsmLogging.Instance":"Akka.Actor.Internal.InternalActivateFsmLogging.yml","Akka.Actor.Internal.IInitializableActor":"Akka.Actor.Internal.IInitializableActor.yml","Akka.Actor.Internal.IInitializableActor.Init":"Akka.Actor.Internal.IInitializableActor.yml","Akka.Actor.Internal.ActorSystemImpl":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.#ctor(System.String)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.#ctor(System.String,Akka.Configuration.Config)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Provider":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Settings":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Name":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Serialization":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.EventStream":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.DeadLetters":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Dispatchers":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Mailboxes":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Scheduler":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Log":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.ActorPipelineResolver":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Guardian":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.LookupRoot":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.SystemGuardian":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.SystemActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.SystemActorOf``1(System.String)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Abort":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Start":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.ActorOf(Akka.Actor.Props,System.String)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.ActorSelection(Akka.Actor.ActorPath)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.ActorSelection(System.String)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.RegisterExtension(Akka.Actor.IExtensionId)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.GetExtension(Akka.Actor.IExtensionId)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.TryGetExtension(System.Type,System.Object@)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.TryGetExtension``1(``0@)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.GetExtension``1":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.HasExtension(System.Type)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.HasExtension``1":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.RegisterOnTermination(System.Action)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Shutdown":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Terminate":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.TerminationTask":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.AwaitTermination":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.AwaitTermination(System.TimeSpan)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.AwaitTermination(System.TimeSpan,System.Threading.CancellationToken)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.WhenTerminated":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.ActorSystemImpl.Stop(Akka.Actor.IActorRef)":"Akka.Actor.Internal.ActorSystemImpl.yml","Akka.Actor.Internal.AbstractStash":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.#ctor(Akka.Actor.IActorContext,System.Int32)":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.Stash":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.Unstash":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.UnstashAll":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.UnstashAll(System.Func{Akka.Actor.Envelope,System.Boolean})":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.ClearStash":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.AbstractStash.Prepend(System.Collections.Generic.IEnumerable{Akka.Actor.Envelope})":"Akka.Actor.Internal.AbstractStash.yml","Akka.Actor.Internal.BoundedStashImpl":"Akka.Actor.Internal.BoundedStashImpl.yml","Akka.Actor.Internal.BoundedStashImpl.#ctor(Akka.Actor.IActorContext,System.Int32)":"Akka.Actor.Internal.BoundedStashImpl.yml","Akka.Actor.Internal.UnboundedStashImpl":"Akka.Actor.Internal.UnboundedStashImpl.yml","Akka.Actor.Internal.UnboundedStashImpl.#ctor(Akka.Actor.IActorContext)":"Akka.Actor.Internal.UnboundedStashImpl.yml","Akka.Actor.Dsl":"Akka.Actor.Dsl.yml","Akka.Actor.Dsl.IActorDsl":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.OnPostRestart":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.OnPreRestart":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.OnPostStop":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.OnPreStart":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.Strategy":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.Receive``1(System.Action{``0,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.Receive``1(System.Predicate{``0},System.Action{``0,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.Receive``1(System.Action{``0,Akka.Actor.IActorContext},System.Predicate{``0})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.ReceiveAny(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.ReceiveAsync``1(System.Func{``0,Akka.Actor.IActorContext,System.Threading.Tasks.Task},System.Predicate{``0})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.ReceiveAsync``1(System.Predicate{``0},System.Func{``0,Akka.Actor.IActorContext,System.Threading.Tasks.Task})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.ReceiveAnyAsync(System.Func{System.Object,Akka.Actor.IActorContext,System.Threading.Tasks.Task})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.DefaultPreRestart(System.Exception,System.Object)":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.DefaultPostRestart(System.Exception)":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.DefaultPreStart":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.DefaultPostStop":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.Become(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.BecomeStacked(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.UnbecomeStacked":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.IActorDsl.ActorOf(System.Action{Akka.Actor.Dsl.IActorDsl},System.String)":"Akka.Actor.Dsl.IActorDsl.yml","Akka.Actor.Dsl.Act":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.OnPostRestart":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.OnPreRestart":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.OnPostStop":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.OnPreStart":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Strategy":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.#ctor(System.Action{Akka.Actor.Dsl.IActorDsl})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.#ctor(System.Action{Akka.Actor.Dsl.IActorDsl,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Receive``1(System.Action{``0,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Receive``1(System.Action{``0,Akka.Actor.IActorContext},System.Predicate{``0})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Receive``1(System.Predicate{``0},System.Action{``0,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.ReceiveAny(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.ReceiveAsync``1(System.Func{``0,Akka.Actor.IActorContext,System.Threading.Tasks.Task},System.Predicate{``0})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.ReceiveAsync``1(System.Predicate{``0},System.Func{``0,Akka.Actor.IActorContext,System.Threading.Tasks.Task})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.ReceiveAnyAsync(System.Func{System.Object,Akka.Actor.IActorContext,System.Threading.Tasks.Task})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.DefaultPreRestart(System.Exception,System.Object)":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.DefaultPostRestart(System.Exception)":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.DefaultPreStart":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.DefaultPostStop":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Become(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.BecomeStacked(System.Action{System.Object,Akka.Actor.IActorContext})":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.Akka#Actor#Dsl#IActorDsl#UnbecomeStacked":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.ActorOf(System.Action{Akka.Actor.Dsl.IActorDsl},System.String)":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.PreRestart(System.Exception,System.Object)":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.PostRestart(System.Exception)":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.PostStop":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.PreStart":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.Act.SupervisorStrategy":"Akka.Actor.Dsl.Act.yml","Akka.Actor.Dsl.ActExtensions":"Akka.Actor.Dsl.ActExtensions.yml","Akka.Actor.Dsl.ActExtensions.ActorOf(Akka.Actor.IActorRefFactory,System.Action{Akka.Actor.Dsl.IActorDsl},System.String)":"Akka.Actor.Dsl.ActExtensions.yml","Akka.Actor.Dsl.ActExtensions.ActorOf(Akka.Actor.IActorRefFactory,System.Action{Akka.Actor.Dsl.IActorDsl,Akka.Actor.IActorContext},System.String)":"Akka.Actor.Dsl.ActExtensions.yml","Akka.Configuration":"Akka.Configuration.yml","Akka.Configuration.ConfigurationException":"Akka.Configuration.ConfigurationException.yml","Akka.Configuration.ConfigurationException.#ctor(System.String)":"Akka.Configuration.ConfigurationException.yml","Akka.Configuration.ConfigurationException.#ctor(System.String,System.Exception)":"Akka.Configuration.ConfigurationException.yml","Akka.Configuration.ConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Configuration.ConfigurationException.yml","Akka.Configuration.ConfigurationFactory":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.Empty":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.ParseString(System.String,System.Func{System.String,Akka.Configuration.Hocon.HoconRoot})":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.ParseString(System.String)":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.Load":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.Default":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.FromResource(System.String,System.Object)":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.FromResource``1(System.String)":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.FromResource(System.String,System.Reflection.Assembly)":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.ConfigurationFactory.FromObject(System.Object)":"Akka.Configuration.ConfigurationFactory.yml","Akka.Configuration.Config":"Akka.Configuration.Config.yml","Akka.Configuration.Config.#ctor":"Akka.Configuration.Config.yml","Akka.Configuration.Config.#ctor(Akka.Configuration.Hocon.HoconRoot)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.#ctor(Akka.Configuration.Config,Akka.Configuration.Config)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.Fallback":"Akka.Configuration.Config.yml","Akka.Configuration.Config.IsEmpty":"Akka.Configuration.Config.yml","Akka.Configuration.Config.Root":"Akka.Configuration.Config.yml","Akka.Configuration.Config.Substitutions":"Akka.Configuration.Config.yml","Akka.Configuration.Config.Copy(Akka.Configuration.Config)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetBoolean(System.String,System.Boolean)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetByteSize(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetInt(System.String,System.Int32)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetLong(System.String,System.Int64)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetString(System.String,System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetFloat(System.String,System.Single)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetDecimal(System.String,System.Decimal)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetDouble(System.String,System.Double)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetBooleanList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetDecimalList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetFloatList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetDoubleList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetIntList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetLongList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetByteList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetStringList(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetConfig(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetValue(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetMillisDuration(System.String,System.Nullable{System.TimeSpan},System.Boolean)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.GetTimeSpan(System.String,System.Nullable{System.TimeSpan},System.Boolean)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.ToString":"Akka.Configuration.Config.yml","Akka.Configuration.Config.ToString(System.Boolean)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.WithFallback(Akka.Configuration.Config)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.HasPath(System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.op_Addition(Akka.Configuration.Config,System.String)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.op_Addition(System.String,Akka.Configuration.Config)":"Akka.Configuration.Config.yml","Akka.Configuration.Config.op_Implicit(System.String)~Akka.Configuration.Config":"Akka.Configuration.Config.yml","Akka.Configuration.Config.AsEnumerable":"Akka.Configuration.Config.yml","Akka.Configuration.Config.Empty":"Akka.Configuration.Config.yml","Akka.Configuration.ConfigExtensions":"Akka.Configuration.ConfigExtensions.yml","Akka.Configuration.ConfigExtensions.SafeWithFallback(Akka.Configuration.Config,Akka.Configuration.Config)":"Akka.Configuration.ConfigExtensions.yml","Akka.Configuration.ConfigExtensions.IsNullOrEmpty(Akka.Configuration.Config)":"Akka.Configuration.ConfigExtensions.yml","Akka.Configuration.Hocon":"Akka.Configuration.Hocon.yml","Akka.Configuration.Hocon.AkkaConfigurationSection":"Akka.Configuration.Hocon.AkkaConfigurationSection.yml","Akka.Configuration.Hocon.AkkaConfigurationSection.AkkaConfig":"Akka.Configuration.Hocon.AkkaConfigurationSection.yml","Akka.Configuration.Hocon.AkkaConfigurationSection.Hocon":"Akka.Configuration.Hocon.AkkaConfigurationSection.yml","Akka.Configuration.Hocon.CDataConfigurationElement":"Akka.Configuration.Hocon.CDataConfigurationElement.yml","Akka.Configuration.Hocon.CDataConfigurationElement.ContentPropertyName":"Akka.Configuration.Hocon.CDataConfigurationElement.yml","Akka.Configuration.Hocon.CDataConfigurationElement.DeserializeElement(System.Xml.XmlReader,System.Boolean)":"Akka.Configuration.Hocon.CDataConfigurationElement.yml","Akka.Configuration.Hocon.HoconArray":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconArray.IsString":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconArray.GetString":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconArray.IsArray":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconArray.GetArray":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconArray.ToString":"Akka.Configuration.Hocon.HoconArray.yml","Akka.Configuration.Hocon.HoconConfigurationElement":"Akka.Configuration.Hocon.HoconConfigurationElement.yml","Akka.Configuration.Hocon.HoconConfigurationElement.Content":"Akka.Configuration.Hocon.HoconConfigurationElement.yml","Akka.Configuration.Hocon.HoconLiteral":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.Value":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.IsString":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.GetString":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.IsArray":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.GetArray":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconLiteral.ToString":"Akka.Configuration.Hocon.HoconLiteral.yml","Akka.Configuration.Hocon.HoconObject":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.#ctor":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.Unwrapped":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.Items":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.IsString":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.GetString":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.IsArray":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.GetArray":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.GetKey(System.String)":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.GetOrCreateKey(System.String)":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.ToString":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.ToString(System.Int32)":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.HoconObject.Merge(Akka.Configuration.Hocon.HoconObject)":"Akka.Configuration.Hocon.HoconObject.yml","Akka.Configuration.Hocon.Parser":"Akka.Configuration.Hocon.Parser.yml","Akka.Configuration.Hocon.Parser.Parse(System.String,System.Func{System.String,Akka.Configuration.Hocon.HoconRoot})":"Akka.Configuration.Hocon.Parser.yml","Akka.Configuration.Hocon.Parser.ParseValue(Akka.Configuration.Hocon.HoconValue,System.String)":"Akka.Configuration.Hocon.Parser.yml","Akka.Configuration.Hocon.Parser.ParseArray(System.String)":"Akka.Configuration.Hocon.Parser.yml","Akka.Configuration.Hocon.HoconRoot":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconRoot.#ctor":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconRoot.#ctor(Akka.Configuration.Hocon.HoconValue,System.Collections.Generic.IEnumerable{Akka.Configuration.Hocon.HoconSubstitution})":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconRoot.#ctor(Akka.Configuration.Hocon.HoconValue)":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconRoot.Value":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconRoot.Substitutions":"Akka.Configuration.Hocon.HoconRoot.yml","Akka.Configuration.Hocon.HoconSubstitution":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.#ctor":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.#ctor(System.String)":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.Path":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.ResolvedValue":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.IsString":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.GetString":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.IsArray":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.GetArray":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.IsObject":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.HoconSubstitution.GetObject":"Akka.Configuration.Hocon.HoconSubstitution.yml","Akka.Configuration.Hocon.TokenType":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Comment":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Key":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.LiteralValue":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Assign":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.ObjectStart":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.ObjectEnd":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Dot":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.EoF":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.ArrayStart":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.ArrayEnd":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Comma":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Substitute":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.TokenType.Include":"Akka.Configuration.Hocon.TokenType.yml","Akka.Configuration.Hocon.Token":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.#ctor":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.#ctor(Akka.Configuration.Hocon.TokenType)":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.#ctor(System.String)":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.Value":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.Type":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.Key(System.String)":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.Substitution(System.String)":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Token.LiteralValue(System.String)":"Akka.Configuration.Hocon.Token.yml","Akka.Configuration.Hocon.Tokenizer":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Push":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Pop":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.#ctor(System.String)":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.EoF":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Matches(System.String)":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Take(System.Int32)":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Matches(System.String[])":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Peek":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.Take":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.Tokenizer.PullWhitespace":"Akka.Configuration.Hocon.Tokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.#ctor(System.String)":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullWhitespaceAndComments":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullRestOfLine":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullNext":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullArrayEnd":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsArrayEnd":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsArrayStart":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullArrayStart":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullDot":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullComma":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullStartOfObject":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullEndOfObject":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullAssignment":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsComma":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsDot":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsObjectStart":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsEndOfObject":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsAssignment":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsStartOfQuotedText":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsStartOfTripleQuotedText":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullComment":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullUnquotedKey":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsUnquotedKey":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsUnquotedKeyStart":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsWhitespace":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsWhitespaceOrComment":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullTripleQuotedText":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullQuotedText":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullQuotedKey":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullInclude":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsStartOfComment":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullValue":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsSubstitutionStart":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsInclude":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullSubstitution":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsSpaceOrTab":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.IsStartSimpleValue":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullSpaceOrTab":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconTokenizer.PullSimpleValue":"Akka.Configuration.Hocon.HoconTokenizer.yml","Akka.Configuration.Hocon.HoconValue":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.#ctor":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.#ctor(System.Collections.Generic.List{Akka.Configuration.Hocon.IHoconElement},System.Boolean)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.IsEmpty":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.Values":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.AtKey(System.String)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetObject":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.IsObject":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.AppendValue(Akka.Configuration.Hocon.IHoconElement)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.Clear":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.NewValue(Akka.Configuration.Hocon.IHoconElement)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.IsString":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetChildObject(System.String)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetBoolean":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetString":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetDecimal":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetFloat":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetDouble":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetLong":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetInt":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetByte":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetByteList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetIntList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetLongList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetBooleanList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetFloatList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetDoubleList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetDecimalList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetStringList":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetArray":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.IsArray":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetMillisDuration(System.Boolean)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetTimeSpan(System.Boolean)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.GetByteSize":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.ToString":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.HoconValue.ToString(System.Int32)":"Akka.Configuration.Hocon.HoconValue.yml","Akka.Configuration.Hocon.IMightBeAHoconObject":"Akka.Configuration.Hocon.IMightBeAHoconObject.yml","Akka.Configuration.Hocon.IMightBeAHoconObject.IsObject":"Akka.Configuration.Hocon.IMightBeAHoconObject.yml","Akka.Configuration.Hocon.IMightBeAHoconObject.GetObject":"Akka.Configuration.Hocon.IMightBeAHoconObject.yml","Akka.Configuration.Hocon.IHoconElement":"Akka.Configuration.Hocon.IHoconElement.yml","Akka.Configuration.Hocon.IHoconElement.IsString":"Akka.Configuration.Hocon.IHoconElement.yml","Akka.Configuration.Hocon.IHoconElement.GetString":"Akka.Configuration.Hocon.IHoconElement.yml","Akka.Configuration.Hocon.IHoconElement.IsArray":"Akka.Configuration.Hocon.IHoconElement.yml","Akka.Configuration.Hocon.IHoconElement.GetArray":"Akka.Configuration.Hocon.IHoconElement.yml","Akka.Dispatch":"Akka.Dispatch.yml","Akka.Dispatch.IDispatcherPrerequisites":"Akka.Dispatch.IDispatcherPrerequisites.yml","Akka.Dispatch.IDispatcherPrerequisites.EventStream":"Akka.Dispatch.IDispatcherPrerequisites.yml","Akka.Dispatch.IDispatcherPrerequisites.Scheduler":"Akka.Dispatch.IDispatcherPrerequisites.yml","Akka.Dispatch.IDispatcherPrerequisites.Settings":"Akka.Dispatch.IDispatcherPrerequisites.yml","Akka.Dispatch.IDispatcherPrerequisites.Mailboxes":"Akka.Dispatch.IDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites.#ctor(Akka.Event.EventStream,Akka.Actor.IScheduler,Akka.Actor.Settings,Akka.Dispatch.Mailboxes)":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites.EventStream":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites.Scheduler":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites.Settings":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.DefaultDispatcherPrerequisites.Mailboxes":"Akka.Dispatch.DefaultDispatcherPrerequisites.yml","Akka.Dispatch.ExecutorServiceConfigurator":"Akka.Dispatch.ExecutorServiceConfigurator.yml","Akka.Dispatch.ExecutorServiceConfigurator.#ctor(Akka.Configuration.Config,Akka.Dispatch.IDispatcherPrerequisites)":"Akka.Dispatch.ExecutorServiceConfigurator.yml","Akka.Dispatch.ExecutorServiceConfigurator.Config":"Akka.Dispatch.ExecutorServiceConfigurator.yml","Akka.Dispatch.ExecutorServiceConfigurator.Prerequisites":"Akka.Dispatch.ExecutorServiceConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator.#ctor(Akka.Configuration.Config,Akka.Dispatch.IDispatcherPrerequisites)":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator.Config":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator.Prerequisites":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator.Dispatcher":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcherConfigurator.ConfigureExecutor":"Akka.Dispatch.MessageDispatcherConfigurator.yml","Akka.Dispatch.MessageDispatcher":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.DefaultThroughput":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Configurator":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.#ctor(Akka.Dispatch.MessageDispatcherConfigurator)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.EventStream":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Mailboxes":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Id":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.ThroughputDeadlineTime":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Throughput":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.ShutdownTimeout":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Inhabitants":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Schedule(System.Action)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Schedule(Akka.Dispatch.IRunnable)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.ExecuteTask(Akka.Dispatch.IRunnable)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.ReportFailure(System.Exception)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Shutdown":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Dispatch(Akka.Actor.ActorCell,Akka.Actor.Envelope)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.SystemDispatch(Akka.Actor.ActorCell,Akka.Dispatch.SysMsg.SystemMessage)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Attach(Akka.Actor.ActorCell)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.MessageDispatcher.Detach(Akka.Actor.ActorCell)":"Akka.Dispatch.MessageDispatcher.yml","Akka.Dispatch.ActorTaskScheduler":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.CurrentMessage":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.MaximumConcurrencyLevel":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.GetScheduledTasks":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.QueueTask(System.Threading.Tasks.Task)":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task,System.Boolean)":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.RunTask(System.Action)":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.ActorTaskScheduler.RunTask(System.Func{System.Threading.Tasks.Task})":"Akka.Dispatch.ActorTaskScheduler.yml","Akka.Dispatch.CurrentSynchronizationContextDispatcher":"Akka.Dispatch.CurrentSynchronizationContextDispatcher.yml","Akka.Dispatch.CurrentSynchronizationContextDispatcher.#ctor(Akka.Dispatch.MessageDispatcherConfigurator,System.String,System.Int32,System.Nullable{System.Int64},Akka.Dispatch.ExecutorServiceFactory,System.TimeSpan)":"Akka.Dispatch.CurrentSynchronizationContextDispatcher.yml","Akka.Dispatch.Dispatcher":"Akka.Dispatch.Dispatcher.yml","Akka.Dispatch.Dispatcher.#ctor(Akka.Dispatch.MessageDispatcherConfigurator,System.String,System.Int32,System.Nullable{System.Int64},Akka.Dispatch.ExecutorServiceFactory,System.TimeSpan)":"Akka.Dispatch.Dispatcher.yml","Akka.Dispatch.Dispatcher.ExecuteTask(Akka.Dispatch.IRunnable)":"Akka.Dispatch.Dispatcher.yml","Akka.Dispatch.Dispatcher.Shutdown":"Akka.Dispatch.Dispatcher.yml","Akka.Dispatch.ExecutorService":"Akka.Dispatch.ExecutorService.yml","Akka.Dispatch.ExecutorService.#ctor(System.String)":"Akka.Dispatch.ExecutorService.yml","Akka.Dispatch.ExecutorService.Id":"Akka.Dispatch.ExecutorService.yml","Akka.Dispatch.ExecutorService.Execute(Akka.Dispatch.IRunnable)":"Akka.Dispatch.ExecutorService.yml","Akka.Dispatch.ExecutorService.Shutdown":"Akka.Dispatch.ExecutorService.yml","Akka.Dispatch.ExecutorServiceFactory":"Akka.Dispatch.ExecutorServiceFactory.yml","Akka.Dispatch.ExecutorServiceFactory.Produce(System.String)":"Akka.Dispatch.ExecutorServiceFactory.yml","Akka.Dispatch.RejectedExecutionException":"Akka.Dispatch.RejectedExecutionException.yml","Akka.Dispatch.RejectedExecutionException.#ctor(System.String,System.Exception)":"Akka.Dispatch.RejectedExecutionException.yml","Akka.Dispatch.Dispatchers":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.DefaultDispatcherId":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.SynchronizedDispatcherId":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.#ctor(Akka.Actor.ActorSystem,Akka.Dispatch.IDispatcherPrerequisites)":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.DefaultGlobalDispatcher":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.DefaultDispatcherConfig":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.Prerequisites":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.Lookup(System.String)":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.HasDispatcher(System.String)":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.Dispatchers.RegisterConfigurator(System.String,Akka.Dispatch.MessageDispatcherConfigurator)":"Akka.Dispatch.Dispatchers.yml","Akka.Dispatch.DispatcherConfigurator":"Akka.Dispatch.DispatcherConfigurator.yml","Akka.Dispatch.DispatcherConfigurator.#ctor(Akka.Configuration.Config,Akka.Dispatch.IDispatcherPrerequisites)":"Akka.Dispatch.DispatcherConfigurator.yml","Akka.Dispatch.DispatcherConfigurator.Dispatcher":"Akka.Dispatch.DispatcherConfigurator.yml","Akka.Dispatch.IRunnable":"Akka.Dispatch.IRunnable.yml","Akka.Dispatch.IRunnable.Run":"Akka.Dispatch.IRunnable.yml","Akka.Dispatch.ActionRunnable":"Akka.Dispatch.ActionRunnable.yml","Akka.Dispatch.ActionRunnable.#ctor(System.Action)":"Akka.Dispatch.ActionRunnable.yml","Akka.Dispatch.ActionRunnable.Run":"Akka.Dispatch.ActionRunnable.yml","Akka.Dispatch.ActionWithStateRunnable":"Akka.Dispatch.ActionWithStateRunnable.yml","Akka.Dispatch.ActionWithStateRunnable.#ctor(System.Action{System.Object},System.Object)":"Akka.Dispatch.ActionWithStateRunnable.yml","Akka.Dispatch.ActionWithStateRunnable.Run":"Akka.Dispatch.ActionWithStateRunnable.yml","Akka.Dispatch.ISemantics":"Akka.Dispatch.ISemantics.yml","Akka.Dispatch.IMultipleConsumerSemantics":"Akka.Dispatch.IMultipleConsumerSemantics.yml","Akka.Dispatch.IUnboundedMessageQueueSemantics":"Akka.Dispatch.IUnboundedMessageQueueSemantics.yml","Akka.Dispatch.IBoundedMessageQueueSemantics":"Akka.Dispatch.IBoundedMessageQueueSemantics.yml","Akka.Dispatch.IBoundedMessageQueueSemantics.PushTimeOut":"Akka.Dispatch.IBoundedMessageQueueSemantics.yml","Akka.Dispatch.IBlockingMessageQueueSemantics":"Akka.Dispatch.IBlockingMessageQueueSemantics.yml","Akka.Dispatch.IBlockingMessageQueueSemantics.BlockTimeOut":"Akka.Dispatch.IBlockingMessageQueueSemantics.yml","Akka.Dispatch.IDequeBasedMessageQueueSemantics":"Akka.Dispatch.IDequeBasedMessageQueueSemantics.yml","Akka.Dispatch.IDequeBasedMessageQueueSemantics.EnqueueFirst(Akka.Actor.Envelope)":"Akka.Dispatch.IDequeBasedMessageQueueSemantics.yml","Akka.Dispatch.IUnboundedDequeBasedMessageQueueSemantics":"Akka.Dispatch.IUnboundedDequeBasedMessageQueueSemantics.yml","Akka.Dispatch.IBoundedDequeBasedMessageQueueSemantics":"Akka.Dispatch.IBoundedDequeBasedMessageQueueSemantics.yml","Akka.Dispatch.FutureActor":"Akka.Dispatch.FutureActor.yml","Akka.Dispatch.FutureActor.#ctor":"Akka.Dispatch.FutureActor.yml","Akka.Dispatch.FutureActor.#ctor(System.Threading.Tasks.TaskCompletionSource{System.Object},Akka.Actor.IActorRef)":"Akka.Dispatch.FutureActor.yml","Akka.Dispatch.FutureActor.Receive(System.Object)":"Akka.Dispatch.FutureActor.yml","Akka.Dispatch.Mailbox":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.MessageQueue":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.#ctor(Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.Dispatcher":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.SetActor(Akka.Actor.ActorCell)":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.Run":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.CleanUp":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.Mailbox.DebugPrint(System.String,System.Object[])":"Akka.Dispatch.Mailbox.yml","Akka.Dispatch.MailboxType":"Akka.Dispatch.MailboxType.yml","Akka.Dispatch.MailboxType.Settings":"Akka.Dispatch.MailboxType.yml","Akka.Dispatch.MailboxType.Config":"Akka.Dispatch.MailboxType.yml","Akka.Dispatch.MailboxType.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.MailboxType.yml","Akka.Dispatch.MailboxType.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.MailboxType.yml","Akka.Dispatch.IProducesMessageQueue`1":"Akka.Dispatch.IProducesMessageQueue-1.yml","Akka.Dispatch.UnboundedMailbox":"Akka.Dispatch.UnboundedMailbox.yml","Akka.Dispatch.UnboundedMailbox.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.UnboundedMailbox.yml","Akka.Dispatch.UnboundedMailbox.#ctor":"Akka.Dispatch.UnboundedMailbox.yml","Akka.Dispatch.UnboundedMailbox.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.UnboundedMailbox.yml","Akka.Dispatch.BoundedMailbox":"Akka.Dispatch.BoundedMailbox.yml","Akka.Dispatch.BoundedMailbox.Capacity":"Akka.Dispatch.BoundedMailbox.yml","Akka.Dispatch.BoundedMailbox.PushTimeout":"Akka.Dispatch.BoundedMailbox.yml","Akka.Dispatch.BoundedMailbox.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.BoundedMailbox.yml","Akka.Dispatch.BoundedMailbox.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.BoundedMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox.PriorityGenerator(System.Object)":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox.InitialCapacity":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox.DefaultCapacity":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedPriorityMailbox.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.UnboundedPriorityMailbox.yml","Akka.Dispatch.UnboundedDequeBasedMailbox":"Akka.Dispatch.UnboundedDequeBasedMailbox.yml","Akka.Dispatch.UnboundedDequeBasedMailbox.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.UnboundedDequeBasedMailbox.yml","Akka.Dispatch.UnboundedDequeBasedMailbox.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.UnboundedDequeBasedMailbox.yml","Akka.Dispatch.BoundedDequeBasedMailbox":"Akka.Dispatch.BoundedDequeBasedMailbox.yml","Akka.Dispatch.BoundedDequeBasedMailbox.Capacity":"Akka.Dispatch.BoundedDequeBasedMailbox.yml","Akka.Dispatch.BoundedDequeBasedMailbox.PushTimeout":"Akka.Dispatch.BoundedDequeBasedMailbox.yml","Akka.Dispatch.BoundedDequeBasedMailbox.#ctor(Akka.Actor.Settings,Akka.Configuration.Config)":"Akka.Dispatch.BoundedDequeBasedMailbox.yml","Akka.Dispatch.BoundedDequeBasedMailbox.Create(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Dispatch.BoundedDequeBasedMailbox.yml","Akka.Dispatch.Mailboxes":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.DefaultMailboxId":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.NoMailboxRequirement":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.#ctor(Akka.Actor.ActorSystem)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.DeadLetterMailbox":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.HasRequiredType(System.Type)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.ProducesMessageQueue(System.Type)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.LookupByQueueType(System.Type)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.Lookup(System.String)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.GetRequiredType(System.Type)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.GetMailboxType(Akka.Actor.Props,Akka.Configuration.Config)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.Mailboxes.FromConfig(System.String)":"Akka.Dispatch.Mailboxes.yml","Akka.Dispatch.PinnedDispatcher":"Akka.Dispatch.PinnedDispatcher.yml","Akka.Dispatch.PinnedDispatcher.#ctor(Akka.Dispatch.MessageDispatcherConfigurator,System.String,System.Int32,System.Nullable{System.Int64},Akka.Dispatch.ExecutorServiceFactory,System.TimeSpan)":"Akka.Dispatch.PinnedDispatcher.yml","Akka.Dispatch.ThreadPoolConfig":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.ThreadPoolConfig.#ctor(Akka.Configuration.Config)":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.ThreadPoolConfig.PoolSizeMin":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.ThreadPoolConfig.PoolSizeFactor":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.ThreadPoolConfig.PoolSizeMax":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.ThreadPoolConfig.ScaledPoolSize(System.Int32,System.Double,System.Int32)":"Akka.Dispatch.ThreadPoolConfig.yml","Akka.Dispatch.IRequiresMessageQueue`1":"Akka.Dispatch.IRequiresMessageQueue-1.yml","Akka.Dispatch.MessageQueues":"Akka.Dispatch.MessageQueues.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.LockedCount":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.BlockTimeOut":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.HasMessages":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.Count":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.TryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.LockedEnqueue(Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BlockingMessageQueue.LockedTryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.BlockingMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.#ctor(Akka.Configuration.Config)":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.#ctor(System.Int32,System.TimeSpan)":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.HasMessages":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.Count":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.TryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedMessageQueue.PushTimeOut":"Akka.Dispatch.MessageQueues.BoundedMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.MessageQueue":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.#ctor(Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.HasMessages":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.Count":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.TryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.EnqueueFirst(Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.DequeWrapperMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedDequeMessageQueue":"Akka.Dispatch.MessageQueues.UnboundedDequeMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedDequeMessageQueue.#ctor":"Akka.Dispatch.MessageQueues.UnboundedDequeMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue":"Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue.#ctor(System.Int32,System.TimeSpan)":"Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue.yml","Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue.PushTimeOut":"Akka.Dispatch.MessageQueues.BoundedDequeMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.#ctor(System.Int32)":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.#ctor(System.Func{System.Object,System.Int32},System.Int32)":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.LockedCount":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.LockedEnqueue(Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.LockedTryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.UnboundedPriorityMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue.HasMessages":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue.Count":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue.Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue.TryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.UnboundedMessageQueue.CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.UnboundedMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue.HasMessages":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue.Count":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue.Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue.TryDequeue(Akka.Actor.Envelope@)":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.MessageQueues.IMessageQueue.CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Dispatch.MessageQueues.IMessageQueue.yml","Akka.Dispatch.SysMsg":"Akka.Dispatch.SysMsg.yml","Akka.Dispatch.SysMsg.ISystemMessage":"Akka.Dispatch.SysMsg.ISystemMessage.yml","Akka.Dispatch.SysMsg.SystemMessage":"Akka.Dispatch.SysMsg.SystemMessage.yml","Akka.Dispatch.SysMsg.SystemMessage.Unlink":"Akka.Dispatch.SysMsg.SystemMessage.yml","Akka.Dispatch.SysMsg.SystemMessage.Unlinked":"Akka.Dispatch.SysMsg.SystemMessage.yml","Akka.Dispatch.SysMsg.NoMessage":"Akka.Dispatch.SysMsg.NoMessage.yml","Akka.Dispatch.SysMsg.NoMessage.ToString":"Akka.Dispatch.SysMsg.NoMessage.yml","Akka.Dispatch.SysMsg.DeathWatchNotification":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.DeathWatchNotification.#ctor(Akka.Actor.IActorRef,System.Boolean,System.Boolean)":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.DeathWatchNotification.Actor":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.DeathWatchNotification.ExistenceConfirmed":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.DeathWatchNotification.AddressTerminated":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.DeathWatchNotification.ToString":"Akka.Dispatch.SysMsg.DeathWatchNotification.yml","Akka.Dispatch.SysMsg.Failed":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Failed.#ctor(Akka.Actor.IActorRef,System.Exception,System.Int64)":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Failed.Child":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Failed.Cause":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Failed.Uid":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Failed.ToString":"Akka.Dispatch.SysMsg.Failed.yml","Akka.Dispatch.SysMsg.Supervise":"Akka.Dispatch.SysMsg.Supervise.yml","Akka.Dispatch.SysMsg.Supervise.#ctor(Akka.Actor.IActorRef,System.Boolean)":"Akka.Dispatch.SysMsg.Supervise.yml","Akka.Dispatch.SysMsg.Supervise.Async":"Akka.Dispatch.SysMsg.Supervise.yml","Akka.Dispatch.SysMsg.Supervise.Child":"Akka.Dispatch.SysMsg.Supervise.yml","Akka.Dispatch.SysMsg.Supervise.ToString":"Akka.Dispatch.SysMsg.Supervise.yml","Akka.Dispatch.SysMsg.Watch":"Akka.Dispatch.SysMsg.Watch.yml","Akka.Dispatch.SysMsg.Watch.#ctor(Akka.Actor.IInternalActorRef,Akka.Actor.IInternalActorRef)":"Akka.Dispatch.SysMsg.Watch.yml","Akka.Dispatch.SysMsg.Watch.Watchee":"Akka.Dispatch.SysMsg.Watch.yml","Akka.Dispatch.SysMsg.Watch.Watcher":"Akka.Dispatch.SysMsg.Watch.yml","Akka.Dispatch.SysMsg.Watch.ToString":"Akka.Dispatch.SysMsg.Watch.yml","Akka.Dispatch.SysMsg.Unwatch":"Akka.Dispatch.SysMsg.Unwatch.yml","Akka.Dispatch.SysMsg.Unwatch.#ctor(Akka.Actor.IInternalActorRef,Akka.Actor.IInternalActorRef)":"Akka.Dispatch.SysMsg.Unwatch.yml","Akka.Dispatch.SysMsg.Unwatch.Watchee":"Akka.Dispatch.SysMsg.Unwatch.yml","Akka.Dispatch.SysMsg.Unwatch.Watcher":"Akka.Dispatch.SysMsg.Unwatch.yml","Akka.Dispatch.SysMsg.Unwatch.ToString":"Akka.Dispatch.SysMsg.Unwatch.yml","Akka.Dispatch.SysMsg.ActorTask":"Akka.Dispatch.SysMsg.ActorTask.yml","Akka.Dispatch.SysMsg.ActorTask.#ctor(System.Threading.Tasks.Task)":"Akka.Dispatch.SysMsg.ActorTask.yml","Akka.Dispatch.SysMsg.ActorTask.Task":"Akka.Dispatch.SysMsg.ActorTask.yml","Akka.Dispatch.SysMsg.Recreate":"Akka.Dispatch.SysMsg.Recreate.yml","Akka.Dispatch.SysMsg.Recreate.#ctor(System.Exception)":"Akka.Dispatch.SysMsg.Recreate.yml","Akka.Dispatch.SysMsg.Recreate.Cause":"Akka.Dispatch.SysMsg.Recreate.yml","Akka.Dispatch.SysMsg.Recreate.ToString":"Akka.Dispatch.SysMsg.Recreate.yml","Akka.Dispatch.SysMsg.Resume":"Akka.Dispatch.SysMsg.Resume.yml","Akka.Dispatch.SysMsg.Resume.#ctor(System.Exception)":"Akka.Dispatch.SysMsg.Resume.yml","Akka.Dispatch.SysMsg.Resume.CausedByFailure":"Akka.Dispatch.SysMsg.Resume.yml","Akka.Dispatch.SysMsg.Resume.ToString":"Akka.Dispatch.SysMsg.Resume.yml","Akka.Dispatch.SysMsg.Suspend":"Akka.Dispatch.SysMsg.Suspend.yml","Akka.Dispatch.SysMsg.Suspend.ToString":"Akka.Dispatch.SysMsg.Suspend.yml","Akka.Dispatch.SysMsg.Stop":"Akka.Dispatch.SysMsg.Stop.yml","Akka.Dispatch.SysMsg.Stop.ToString":"Akka.Dispatch.SysMsg.Stop.yml","Akka.Dispatch.SysMsg.StopChild":"Akka.Dispatch.SysMsg.StopChild.yml","Akka.Dispatch.SysMsg.StopChild.#ctor(Akka.Actor.IActorRef)":"Akka.Dispatch.SysMsg.StopChild.yml","Akka.Dispatch.SysMsg.StopChild.Child":"Akka.Dispatch.SysMsg.StopChild.yml","Akka.Dispatch.SysMsg.StopChild.ToString":"Akka.Dispatch.SysMsg.StopChild.yml","Akka.Dispatch.SysMsg.Escalate":"Akka.Dispatch.SysMsg.Escalate.yml","Akka.Dispatch.SysMsg.Escalate.#ctor(System.Exception)":"Akka.Dispatch.SysMsg.Escalate.yml","Akka.Dispatch.SysMsg.Escalate.Reason":"Akka.Dispatch.SysMsg.Escalate.yml","Akka.Dispatch.SysMsg.Escalate.ToString":"Akka.Dispatch.SysMsg.Escalate.yml","Akka.Dispatch.SysMsg.Terminate":"Akka.Dispatch.SysMsg.Terminate.yml","Akka.Dispatch.SysMsg.Terminate.ToString":"Akka.Dispatch.SysMsg.Terminate.yml","Akka.Dispatch.SysMsg.Create":"Akka.Dispatch.SysMsg.Create.yml","Akka.Dispatch.SysMsg.Create.#ctor(Akka.Actor.ActorInitializationException)":"Akka.Dispatch.SysMsg.Create.yml","Akka.Dispatch.SysMsg.Create.Failure":"Akka.Dispatch.SysMsg.Create.yml","Akka.Dispatch.SysMsg.Create.ToString":"Akka.Dispatch.SysMsg.Create.yml","Akka.Dispatch.SysMsg.RegisterTerminationHook":"Akka.Dispatch.SysMsg.RegisterTerminationHook.yml","Akka.Dispatch.SysMsg.RegisterTerminationHook.Instance":"Akka.Dispatch.SysMsg.RegisterTerminationHook.yml","Akka.Dispatch.SysMsg.RegisterTerminationHook.ToString":"Akka.Dispatch.SysMsg.RegisterTerminationHook.yml","Akka.Dispatch.SysMsg.TerminationHook":"Akka.Dispatch.SysMsg.TerminationHook.yml","Akka.Dispatch.SysMsg.TerminationHook.Instance":"Akka.Dispatch.SysMsg.TerminationHook.yml","Akka.Dispatch.SysMsg.TerminationHook.ToString":"Akka.Dispatch.SysMsg.TerminationHook.yml","Akka.Dispatch.SysMsg.TerminationHookDone":"Akka.Dispatch.SysMsg.TerminationHookDone.yml","Akka.Dispatch.SysMsg.TerminationHookDone.Instance":"Akka.Dispatch.SysMsg.TerminationHookDone.yml","Akka.Dispatch.SysMsg.TerminationHookDone.ToString":"Akka.Dispatch.SysMsg.TerminationHookDone.yml","Akka.Event":"Akka.Event.yml","Akka.Event.ActorEventBus`2":"Akka.Event.ActorEventBus-2.yml","Akka.Event.BusLogging":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.#ctor(Akka.Event.LoggingBus,System.String,System.Type,Akka.Event.ILogMessageFormatter)":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.IsDebugEnabled":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.IsErrorEnabled":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.IsInfoEnabled":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.IsWarningEnabled":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.NotifyError(System.Object)":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.NotifyError(System.Exception,System.Object)":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.NotifyWarning(System.Object)":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.NotifyInfo(System.Object)":"Akka.Event.BusLogging.yml","Akka.Event.BusLogging.NotifyDebug(System.Object)":"Akka.Event.BusLogging.yml","Akka.Event.IDeadLetterSuppression":"Akka.Event.IDeadLetterSuppression.yml","Akka.Event.AllDeadLetters":"Akka.Event.AllDeadLetters.yml","Akka.Event.AllDeadLetters.#ctor(System.Object,Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Event.AllDeadLetters.yml","Akka.Event.AllDeadLetters.Message":"Akka.Event.AllDeadLetters.yml","Akka.Event.AllDeadLetters.Recipient":"Akka.Event.AllDeadLetters.yml","Akka.Event.AllDeadLetters.Sender":"Akka.Event.AllDeadLetters.yml","Akka.Event.AllDeadLetters.ToString":"Akka.Event.AllDeadLetters.yml","Akka.Event.DeadLetter":"Akka.Event.DeadLetter.yml","Akka.Event.DeadLetter.#ctor(System.Object,Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Event.DeadLetter.yml","Akka.Event.SuppressedDeadLetter":"Akka.Event.SuppressedDeadLetter.yml","Akka.Event.SuppressedDeadLetter.#ctor(Akka.Event.IDeadLetterSuppression,Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Event.SuppressedDeadLetter.yml","Akka.Event.DeadLetterListener":"Akka.Event.DeadLetterListener.yml","Akka.Event.DeadLetterListener.PostRestart(System.Exception)":"Akka.Event.DeadLetterListener.yml","Akka.Event.DeadLetterListener.PreStart":"Akka.Event.DeadLetterListener.yml","Akka.Event.DeadLetterListener.PostStop":"Akka.Event.DeadLetterListener.yml","Akka.Event.DeadLetterListener.Receive(System.Object)":"Akka.Event.DeadLetterListener.yml","Akka.Event.Debug":"Akka.Event.Debug.yml","Akka.Event.Debug.#ctor(System.String,System.Type,System.Object)":"Akka.Event.Debug.yml","Akka.Event.Debug.LogLevel":"Akka.Event.Debug.yml","Akka.Event.DefaultLogger":"Akka.Event.DefaultLogger.yml","Akka.Event.DefaultLogger.Receive(System.Object)":"Akka.Event.DefaultLogger.yml","Akka.Event.DefaultLogger.Print(Akka.Event.LogEvent)":"Akka.Event.DefaultLogger.yml","Akka.Event.DefaultLogMessageFormatter":"Akka.Event.DefaultLogMessageFormatter.yml","Akka.Event.DefaultLogMessageFormatter.Format(System.String,System.Object[])":"Akka.Event.DefaultLogMessageFormatter.yml","Akka.Event.Error":"Akka.Event.Error.yml","Akka.Event.Error.#ctor(System.Exception,System.String,System.Type,System.Object)":"Akka.Event.Error.yml","Akka.Event.Error.Cause":"Akka.Event.Error.yml","Akka.Event.Error.LogLevel":"Akka.Event.Error.yml","Akka.Event.Error.ToString":"Akka.Event.Error.yml","Akka.Event.EventBus`3":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.SimpleName(System.Object)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.SimpleName(System.Type)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Subscribe(`2,`1)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Unsubscribe(`2)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Unsubscribe(`2,`1)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.IsSubClassification(`1,`1)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Publish(`0,`2)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Classify(`0,`1)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.GetClassifier(`0)":"Akka.Event.EventBus-3.yml","Akka.Event.EventBus`3.Publish(`0)":"Akka.Event.EventBus-3.yml","Akka.Event.EventStream":"Akka.Event.EventStream.yml","Akka.Event.EventStream.#ctor(System.Boolean)":"Akka.Event.EventStream.yml","Akka.Event.EventStream.Subscribe(Akka.Actor.IActorRef,System.Type)":"Akka.Event.EventStream.yml","Akka.Event.EventStream.Unsubscribe(Akka.Actor.IActorRef,System.Type)":"Akka.Event.EventStream.yml","Akka.Event.EventStream.Unsubscribe(Akka.Actor.IActorRef)":"Akka.Event.EventStream.yml","Akka.Event.EventStream.StartUnsubscriber(Akka.Actor.Internal.ActorSystemImpl)":"Akka.Event.EventStream.yml","Akka.Event.EventStream.InitUnsubscriber(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Event.EventStream.yml","Akka.Event.EventStreamExtensions":"Akka.Event.EventStreamExtensions.yml","Akka.Event.EventStreamExtensions.Subscribe``1(Akka.Event.EventStream,Akka.Actor.IActorRef)":"Akka.Event.EventStreamExtensions.yml","Akka.Event.EventStreamExtensions.Unsubscribe``1(Akka.Event.EventStream,Akka.Actor.IActorRef)":"Akka.Event.EventStreamExtensions.yml","Akka.Event.ILoggerMessageQueueSemantics":"Akka.Event.ILoggerMessageQueueSemantics.yml","Akka.Event.ILogMessageFormatter":"Akka.Event.ILogMessageFormatter.yml","Akka.Event.ILogMessageFormatter.Format(System.String,System.Object[])":"Akka.Event.ILogMessageFormatter.yml","Akka.Event.Info":"Akka.Event.Info.yml","Akka.Event.Info.#ctor(System.String,System.Type,System.Object)":"Akka.Event.Info.yml","Akka.Event.Info.LogLevel":"Akka.Event.Info.yml","Akka.Event.InitializeLogger":"Akka.Event.InitializeLogger.yml","Akka.Event.InitializeLogger.#ctor(Akka.Event.LoggingBus)":"Akka.Event.InitializeLogger.yml","Akka.Event.InitializeLogger.LoggingBus":"Akka.Event.InitializeLogger.yml","Akka.Event.LogEvent":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.#ctor":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.Timestamp":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.Thread":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.LogSource":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.LogClass":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.Message":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.LogLevel":"Akka.Event.LogEvent.yml","Akka.Event.LogEvent.ToString":"Akka.Event.LogEvent.yml","Akka.Event.LoggerInitialized":"Akka.Event.LoggerInitialized.yml","Akka.Event.LoggerMailbox":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.#ctor(Akka.Actor.IActorRef,Akka.Actor.ActorSystem)":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.Akka#Dispatch#MessageQueues#IMessageQueue#HasMessages":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.Akka#Dispatch#MessageQueues#IMessageQueue#Count":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.Akka#Dispatch#MessageQueues#IMessageQueue#Enqueue(Akka.Actor.IActorRef,Akka.Actor.Envelope)":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.Akka#Dispatch#MessageQueues#IMessageQueue#TryDequeue(Akka.Actor.Envelope@)":"Akka.Event.LoggerMailbox.yml","Akka.Event.LoggerMailbox.Akka#Dispatch#MessageQueues#IMessageQueue#CleanUp(Akka.Actor.IActorRef,Akka.Dispatch.MessageQueues.IMessageQueue)":"Akka.Event.LoggerMailbox.yml","Akka.Event.DummyClassForStringSources":"Akka.Event.DummyClassForStringSources.yml","Akka.Event.Logging":"Akka.Event.Logging.yml","Akka.Event.Logging.StandardOutLogger":"Akka.Event.Logging.yml","Akka.Event.Logging.ClassFor(Akka.Event.LogLevel)":"Akka.Event.Logging.yml","Akka.Event.Logging.StringFor(Akka.Event.LogLevel)":"Akka.Event.Logging.yml","Akka.Event.Logging.GetLogger(Akka.Actor.IActorContext,Akka.Event.ILogMessageFormatter)":"Akka.Event.Logging.yml","Akka.Event.Logging.GetLogger(Akka.Actor.ActorSystem,System.Object,Akka.Event.ILogMessageFormatter)":"Akka.Event.Logging.yml","Akka.Event.Logging.GetLogger(Akka.Event.LoggingBus,System.Object,Akka.Event.ILogMessageFormatter)":"Akka.Event.Logging.yml","Akka.Event.Logging.LogLevelFor(System.String)":"Akka.Event.Logging.yml","Akka.Event.Logging.LogLevelFor``1":"Akka.Event.Logging.yml","Akka.Event.ILoggingAdapter":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.IsDebugEnabled":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.IsInfoEnabled":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.IsWarningEnabled":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.IsErrorEnabled":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.IsEnabled(Akka.Event.LogLevel)":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Debug(System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Info(System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Warn(System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Warning(System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Error(System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Error(System.Exception,System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.ILoggingAdapter.Log(Akka.Event.LogLevel,System.String,System.Object[])":"Akka.Event.ILoggingAdapter.yml","Akka.Event.NoLogger":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Instance":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.IsDebugEnabled":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.IsInfoEnabled":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.IsWarningEnabled":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.IsErrorEnabled":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.IsEnabled(Akka.Event.LogLevel)":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Debug(System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Info(System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Warn(System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Warning(System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Error(System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Error(System.Exception,System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.NoLogger.Log(Akka.Event.LogLevel,System.String,System.Object[])":"Akka.Event.NoLogger.yml","Akka.Event.LoggingAdapterBase":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.IsDebugEnabled":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.IsErrorEnabled":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.IsInfoEnabled":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.IsWarningEnabled":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyError(System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyError(System.Exception,System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyWarning(System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyInfo(System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyDebug(System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.#ctor(Akka.Event.ILogMessageFormatter)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.IsEnabled(Akka.Event.LogLevel)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.NotifyLog(Akka.Event.LogLevel,System.Object)":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Debug(System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Warn(System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Warning(System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Error(System.Exception,System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Error(System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Info(System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingAdapterBase.Log(Akka.Event.LogLevel,System.String,System.Object[])":"Akka.Event.LoggingAdapterBase.yml","Akka.Event.LoggingBus":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.LogLevel":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.IsSubClassification(System.Type,System.Type)":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.Publish(System.Object,Akka.Actor.IActorRef)":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.Classify(System.Object,System.Type)":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.GetClassifier(System.Object)":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.StartStdoutLogger(Akka.Actor.Settings)":"Akka.Event.LoggingBus.yml","Akka.Event.LoggingBus.SetLogLevel(Akka.Event.LogLevel)":"Akka.Event.LoggingBus.yml","Akka.Event.LogLevel":"Akka.Event.LogLevel.yml","Akka.Event.LogLevel.DebugLevel":"Akka.Event.LogLevel.yml","Akka.Event.LogLevel.InfoLevel":"Akka.Event.LogLevel.yml","Akka.Event.LogLevel.WarningLevel":"Akka.Event.LogLevel.yml","Akka.Event.LogLevel.ErrorLevel":"Akka.Event.LogLevel.yml","Akka.Event.LogMessage":"Akka.Event.LogMessage.yml","Akka.Event.LogMessage.Format":"Akka.Event.LogMessage.yml","Akka.Event.LogMessage.Args":"Akka.Event.LogMessage.yml","Akka.Event.LogMessage.#ctor(Akka.Event.ILogMessageFormatter,System.String,System.Object[])":"Akka.Event.LogMessage.yml","Akka.Event.LogMessage.ToString":"Akka.Event.LogMessage.yml","Akka.Event.StandardOutLogger":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.Provider":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.Path":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.TellInternal(System.Object,Akka.Actor.IActorRef)":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.DebugColor":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.InfoColor":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.WarningColor":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.ErrorColor":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.UseColors":"Akka.Event.StandardOutLogger.yml","Akka.Event.StandardOutLogger.PrintLogEvent(Akka.Event.LogEvent)":"Akka.Event.StandardOutLogger.yml","Akka.Event.Subscription`2":"Akka.Event.Subscription-2.yml","Akka.Event.Subscription`2.#ctor(`0,System.Collections.Generic.IEnumerable{`1})":"Akka.Event.Subscription-2.yml","Akka.Event.Subscription`2.#ctor(`0)":"Akka.Event.Subscription-2.yml","Akka.Event.Subscription`2.Subscriber":"Akka.Event.Subscription-2.yml","Akka.Event.Subscription`2.Unsubscriptions":"Akka.Event.Subscription-2.yml","Akka.Event.TraceLogger":"Akka.Event.TraceLogger.yml","Akka.Event.TraceLogger.OnReceive(System.Object)":"Akka.Event.TraceLogger.yml","Akka.Event.UnhandledMessage":"Akka.Event.UnhandledMessage.yml","Akka.Event.UnhandledMessage.#ctor(System.Object,Akka.Actor.IActorRef,Akka.Actor.IActorRef)":"Akka.Event.UnhandledMessage.yml","Akka.Event.UnhandledMessage.Message":"Akka.Event.UnhandledMessage.yml","Akka.Event.UnhandledMessage.Sender":"Akka.Event.UnhandledMessage.yml","Akka.Event.UnhandledMessage.Recipient":"Akka.Event.UnhandledMessage.yml","Akka.Event.Warning":"Akka.Event.Warning.yml","Akka.Event.Warning.#ctor(System.String,System.Type,System.Object)":"Akka.Event.Warning.yml","Akka.Event.Warning.LogLevel":"Akka.Event.Warning.yml","Akka.Pattern":"Akka.Pattern.yml","Akka.Pattern.BackoffSupervisor":"Akka.Pattern.BackoffSupervisor.yml","Akka.Pattern.BackoffSupervisor.#ctor(Akka.Actor.Props,System.String,System.TimeSpan,System.TimeSpan,System.Double)":"Akka.Pattern.BackoffSupervisor.yml","Akka.Pattern.BackoffSupervisor.PreStart":"Akka.Pattern.BackoffSupervisor.yml","Akka.Pattern.BackoffSupervisor.OnReceive(System.Object)":"Akka.Pattern.BackoffSupervisor.yml","Akka.Pattern.BackoffSupervisor.GetCurrentChild":"Akka.Pattern.BackoffSupervisor.GetCurrentChild.yml","Akka.Pattern.BackoffSupervisor.GetCurrentChild.Instance":"Akka.Pattern.BackoffSupervisor.GetCurrentChild.yml","Akka.Pattern.BackoffSupervisor.CurrentChild":"Akka.Pattern.BackoffSupervisor.CurrentChild.yml","Akka.Pattern.BackoffSupervisor.CurrentChild.Ref":"Akka.Pattern.BackoffSupervisor.CurrentChild.yml","Akka.Pattern.BackoffSupervisor.CurrentChild.#ctor(Akka.Actor.IActorRef)":"Akka.Pattern.BackoffSupervisor.CurrentChild.yml","Akka.Pattern.BackoffSupervisor.StartChild":"Akka.Pattern.BackoffSupervisor.StartChild.yml","Akka.Pattern.BackoffSupervisor.StartChild.Instance":"Akka.Pattern.BackoffSupervisor.StartChild.yml","Akka.Pattern.BackoffSupervisor.ResetRestartCount":"Akka.Pattern.BackoffSupervisor.ResetRestartCount.yml","Akka.Pattern.BackoffSupervisor.ResetRestartCount.Current":"Akka.Pattern.BackoffSupervisor.ResetRestartCount.yml","Akka.Pattern.BackoffSupervisor.ResetRestartCount.#ctor(System.Int32)":"Akka.Pattern.BackoffSupervisor.ResetRestartCount.yml","Akka.Pattern.CircuitBreaker":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.MaxFailures":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.CallTimeout":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.ResetTimeout":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.Create(System.Int32,System.TimeSpan,System.TimeSpan)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.#ctor(System.Int32,System.TimeSpan,System.TimeSpan)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.CurrentFailureCount":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.WithCircuitBreaker``1(System.Func{System.Threading.Tasks.Task{``0}})":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.WithCircuitBreaker(System.Func{System.Threading.Tasks.Task})":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.WithSyncCircuitBreaker(System.Action)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.WithSyncCircuitBreaker``1(System.Func{``0})":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.OnOpen(System.Action)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.OnHalfOpen(System.Action)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.CircuitBreaker.OnClose(System.Action)":"Akka.Pattern.CircuitBreaker.yml","Akka.Pattern.OpenCircuitException":"Akka.Pattern.OpenCircuitException.yml","Akka.Pattern.OpenCircuitException.#ctor":"Akka.Pattern.OpenCircuitException.yml","Akka.Pattern.OpenCircuitException.#ctor(System.String)":"Akka.Pattern.OpenCircuitException.yml","Akka.Pattern.OpenCircuitException.#ctor(System.String,System.Exception)":"Akka.Pattern.OpenCircuitException.yml","Akka.Pattern.OpenCircuitException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Pattern.OpenCircuitException.yml","Akka.Pattern.IllegalStateException":"Akka.Pattern.IllegalStateException.yml","Akka.Pattern.IllegalStateException.#ctor(System.String)":"Akka.Pattern.IllegalStateException.yml","Akka.Pattern.IllegalStateException.#ctor(System.String,System.Exception)":"Akka.Pattern.IllegalStateException.yml","Akka.Pattern.IllegalStateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)":"Akka.Pattern.IllegalStateException.yml","Akka.IO":"Akka.IO.yml","Akka.IO.DatagramChannel":"Akka.IO.DatagramChannel.yml","Akka.IO.DatagramChannel.Open":"Akka.IO.DatagramChannel.yml","Akka.IO.DatagramChannel.IsOpen":"Akka.IO.DatagramChannel.yml","Akka.IO.DatagramChannel.Send(Akka.IO.ByteBuffer,System.Net.EndPoint)":"Akka.IO.DatagramChannel.yml","Akka.IO.DatagramChannel.Receive(Akka.IO.ByteBuffer)":"Akka.IO.DatagramChannel.yml","Akka.IO.DnsBase":"Akka.IO.DnsBase.yml","Akka.IO.DnsBase.Cached(System.String)":"Akka.IO.DnsBase.yml","Akka.IO.DnsBase.Resolve(System.String,Akka.Actor.ActorSystem,Akka.Actor.IActorRef)":"Akka.IO.DnsBase.yml","Akka.IO.Dns":"Akka.IO.Dns.yml","Akka.IO.Dns.Instance":"Akka.IO.Dns.yml","Akka.IO.Dns.Cached(System.String,Akka.Actor.ActorSystem)":"Akka.IO.Dns.yml","Akka.IO.Dns.ResolveName(System.String,Akka.Actor.ActorSystem,Akka.Actor.IActorRef)":"Akka.IO.Dns.yml","Akka.IO.Dns.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.IO.Dns.yml","Akka.IO.Dns.Command":"Akka.IO.Dns.Command.yml","Akka.IO.Dns.Resolve":"Akka.IO.Dns.Resolve.yml","Akka.IO.Dns.Resolve.#ctor(System.String)":"Akka.IO.Dns.Resolve.yml","Akka.IO.Dns.Resolve.ConsistentHashKey":"Akka.IO.Dns.Resolve.yml","Akka.IO.Dns.Resolve.Name":"Akka.IO.Dns.Resolve.yml","Akka.IO.Dns.Resolved":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.#ctor(System.String,System.Collections.Generic.IEnumerable{System.Net.IPAddress},System.Collections.Generic.IEnumerable{System.Net.IPAddress})":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.Name":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.Ipv4":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.Ipv6":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.Addr":"Akka.IO.Dns.Resolved.yml","Akka.IO.Dns.Resolved.Create(System.String,System.Collections.Generic.IEnumerable{System.Net.IPAddress})":"Akka.IO.Dns.Resolved.yml","Akka.IO.DnsExt":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.Manager":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.GetResolver":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.Settings":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.Cache":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.Provider":"Akka.IO.DnsExt.yml","Akka.IO.DnsExt.DnsSettings":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.DnsExt.DnsSettings.#ctor(Akka.Configuration.Config)":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.DnsExt.DnsSettings.Dispatcher":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.DnsExt.DnsSettings.Resolver":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.DnsExt.DnsSettings.ResolverConfig":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.DnsExt.DnsSettings.ProviderObjectName":"Akka.IO.DnsExt.DnsSettings.yml","Akka.IO.IDnsProvider":"Akka.IO.IDnsProvider.yml","Akka.IO.IDnsProvider.Cache":"Akka.IO.IDnsProvider.yml","Akka.IO.IDnsProvider.ActorClass":"Akka.IO.IDnsProvider.yml","Akka.IO.IDnsProvider.ManagerClass":"Akka.IO.IDnsProvider.yml","Akka.IO.InetAddressDnsProvider":"Akka.IO.InetAddressDnsProvider.yml","Akka.IO.InetAddressDnsProvider.Cache":"Akka.IO.InetAddressDnsProvider.yml","Akka.IO.InetAddressDnsProvider.ActorClass":"Akka.IO.InetAddressDnsProvider.yml","Akka.IO.InetAddressDnsProvider.ManagerClass":"Akka.IO.InetAddressDnsProvider.yml","Akka.IO.InetAddressDnsResolver":"Akka.IO.InetAddressDnsResolver.yml","Akka.IO.InetAddressDnsResolver.#ctor(Akka.IO.SimpleDnsCache,Akka.Configuration.Config)":"Akka.IO.InetAddressDnsResolver.yml","Akka.IO.InetAddressDnsResolver.Receive(System.Object)":"Akka.IO.InetAddressDnsResolver.yml","Akka.IO.SimpleDnsCache":"Akka.IO.SimpleDnsCache.yml","Akka.IO.SimpleDnsCache.#ctor":"Akka.IO.SimpleDnsCache.yml","Akka.IO.SimpleDnsCache.Cached(System.String)":"Akka.IO.SimpleDnsCache.yml","Akka.IO.SimpleDnsCache.Clock":"Akka.IO.SimpleDnsCache.yml","Akka.IO.SimpleDnsCache.CleanUp":"Akka.IO.SimpleDnsCache.yml","Akka.IO.SimpleDnsManager":"Akka.IO.SimpleDnsManager.yml","Akka.IO.SimpleDnsManager.#ctor(Akka.IO.DnsExt)":"Akka.IO.SimpleDnsManager.yml","Akka.IO.SimpleDnsManager.Receive(System.Object)":"Akka.IO.SimpleDnsManager.yml","Akka.IO.SimpleDnsManager.PostStop":"Akka.IO.SimpleDnsManager.yml","Akka.IO.Udp":"Akka.IO.Udp.yml","Akka.IO.Udp.Instance":"Akka.IO.Udp.yml","Akka.IO.Udp.Manager(Akka.Actor.ActorSystem)":"Akka.IO.Udp.yml","Akka.IO.Udp.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.IO.Udp.yml","Akka.IO.Udp.Message":"Akka.IO.Udp.Message.yml","Akka.IO.Udp.Command":"Akka.IO.Udp.Command.yml","Akka.IO.Udp.Command.FailureMessage":"Akka.IO.Udp.Command.yml","Akka.IO.Udp.NoAck":"Akka.IO.Udp.NoAck.yml","Akka.IO.Udp.NoAck.Instance":"Akka.IO.Udp.NoAck.yml","Akka.IO.Udp.NoAck.#ctor(System.Object)":"Akka.IO.Udp.NoAck.yml","Akka.IO.Udp.NoAck.Token":"Akka.IO.Udp.NoAck.yml","Akka.IO.Udp.Send":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.#ctor(Akka.IO.ByteString,System.Net.EndPoint,Akka.IO.Udp.Event)":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.Payload":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.Target":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.Ack":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.WantsAck":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Send.Create(Akka.IO.ByteString,System.Net.EndPoint)":"Akka.IO.Udp.Send.yml","Akka.IO.Udp.Bind":"Akka.IO.Udp.Bind.yml","Akka.IO.Udp.Bind.#ctor(Akka.Actor.IActorRef,System.Net.EndPoint,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption})":"Akka.IO.Udp.Bind.yml","Akka.IO.Udp.Bind.Handler":"Akka.IO.Udp.Bind.yml","Akka.IO.Udp.Bind.LocalAddress":"Akka.IO.Udp.Bind.yml","Akka.IO.Udp.Bind.Options":"Akka.IO.Udp.Bind.yml","Akka.IO.Udp.Unbind":"Akka.IO.Udp.Unbind.yml","Akka.IO.Udp.Unbind.Instance":"Akka.IO.Udp.Unbind.yml","Akka.IO.Udp.SimpleSender":"Akka.IO.Udp.SimpleSender.yml","Akka.IO.Udp.SimpleSender.Instance":"Akka.IO.Udp.SimpleSender.yml","Akka.IO.Udp.SimpleSender.#ctor(System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption})":"Akka.IO.Udp.SimpleSender.yml","Akka.IO.Udp.SimpleSender.Options":"Akka.IO.Udp.SimpleSender.yml","Akka.IO.Udp.SuspendReading":"Akka.IO.Udp.SuspendReading.yml","Akka.IO.Udp.SuspendReading.Instance":"Akka.IO.Udp.SuspendReading.yml","Akka.IO.Udp.ResumeReading":"Akka.IO.Udp.ResumeReading.yml","Akka.IO.Udp.ResumeReading.Instance":"Akka.IO.Udp.ResumeReading.yml","Akka.IO.Udp.Event":"Akka.IO.Udp.Event.yml","Akka.IO.Udp.Received":"Akka.IO.Udp.Received.yml","Akka.IO.Udp.Received.#ctor(Akka.IO.ByteString,System.Net.EndPoint)":"Akka.IO.Udp.Received.yml","Akka.IO.Udp.Received.Data":"Akka.IO.Udp.Received.yml","Akka.IO.Udp.Received.Sender":"Akka.IO.Udp.Received.yml","Akka.IO.Udp.CommandFailed":"Akka.IO.Udp.CommandFailed.yml","Akka.IO.Udp.CommandFailed.#ctor(Akka.IO.Udp.Command)":"Akka.IO.Udp.CommandFailed.yml","Akka.IO.Udp.CommandFailed.Cmd":"Akka.IO.Udp.CommandFailed.yml","Akka.IO.Udp.Bound":"Akka.IO.Udp.Bound.yml","Akka.IO.Udp.Bound.#ctor(System.Net.EndPoint)":"Akka.IO.Udp.Bound.yml","Akka.IO.Udp.Bound.LocalAddress":"Akka.IO.Udp.Bound.yml","Akka.IO.Udp.SimpleSenderReady":"Akka.IO.Udp.SimpleSenderReady.yml","Akka.IO.Udp.SimpleSenderReady.Instance":"Akka.IO.Udp.SimpleSenderReady.yml","Akka.IO.Udp.Unbound":"Akka.IO.Udp.Unbound.yml","Akka.IO.Udp.Unbound.Instance":"Akka.IO.Udp.Unbound.yml","Akka.IO.Udp.SO":"Akka.IO.Udp.SO.yml","Akka.IO.Udp.SO.Broadcast":"Akka.IO.Udp.SO.Broadcast.yml","Akka.IO.Udp.SO.Broadcast.#ctor(System.Boolean)":"Akka.IO.Udp.SO.Broadcast.yml","Akka.IO.Udp.SO.Broadcast.On":"Akka.IO.Udp.SO.Broadcast.yml","Akka.IO.Udp.SO.Broadcast.BeforeDatagramBind(System.Net.Sockets.Socket)":"Akka.IO.Udp.SO.Broadcast.yml","Akka.IO.UdpExt":"Akka.IO.UdpExt.yml","Akka.IO.UdpExt.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.IO.UdpExt.yml","Akka.IO.UdpExt.Manager":"Akka.IO.UdpExt.yml","Akka.IO.UdpExtensions":"Akka.IO.UdpExtensions.yml","Akka.IO.UdpExtensions.Udp(Akka.Actor.ActorSystem)":"Akka.IO.UdpExtensions.yml","Akka.IO.UdpConnected":"Akka.IO.UdpConnected.yml","Akka.IO.UdpConnected.Instance":"Akka.IO.UdpConnected.yml","Akka.IO.UdpConnected.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.IO.UdpConnected.yml","Akka.IO.UdpConnected.Message":"Akka.IO.UdpConnected.Message.yml","Akka.IO.UdpConnected.Command":"Akka.IO.UdpConnected.Command.yml","Akka.IO.UdpConnected.Command.#ctor":"Akka.IO.UdpConnected.Command.yml","Akka.IO.UdpConnected.Command.FailureMessage":"Akka.IO.UdpConnected.Command.yml","Akka.IO.UdpConnected.NoAck":"Akka.IO.UdpConnected.NoAck.yml","Akka.IO.UdpConnected.NoAck.Instance":"Akka.IO.UdpConnected.NoAck.yml","Akka.IO.UdpConnected.NoAck.#ctor(System.Object)":"Akka.IO.UdpConnected.NoAck.yml","Akka.IO.UdpConnected.NoAck.Token":"Akka.IO.UdpConnected.NoAck.yml","Akka.IO.UdpConnected.Send":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Send.#ctor(Akka.IO.ByteString,System.Object)":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Send.Payload":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Send.Ack":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Send.WantsAck":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Send.Create(Akka.IO.ByteString)":"Akka.IO.UdpConnected.Send.yml","Akka.IO.UdpConnected.Connect":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Connect.#ctor(Akka.Actor.IActorRef,System.Net.EndPoint,System.Net.EndPoint,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption})":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Connect.Handler":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Connect.RemoteAddress":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Connect.LocalAddress":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Connect.Options":"Akka.IO.UdpConnected.Connect.yml","Akka.IO.UdpConnected.Disconnect":"Akka.IO.UdpConnected.Disconnect.yml","Akka.IO.UdpConnected.Disconnect.Instance":"Akka.IO.UdpConnected.Disconnect.yml","Akka.IO.UdpConnected.SuspendReading":"Akka.IO.UdpConnected.SuspendReading.yml","Akka.IO.UdpConnected.SuspendReading.Instance":"Akka.IO.UdpConnected.SuspendReading.yml","Akka.IO.UdpConnected.ResumeReading":"Akka.IO.UdpConnected.ResumeReading.yml","Akka.IO.UdpConnected.ResumeReading.Instance":"Akka.IO.UdpConnected.ResumeReading.yml","Akka.IO.UdpConnected.Event":"Akka.IO.UdpConnected.Event.yml","Akka.IO.UdpConnected.Received":"Akka.IO.UdpConnected.Received.yml","Akka.IO.UdpConnected.Received.#ctor(Akka.IO.ByteString)":"Akka.IO.UdpConnected.Received.yml","Akka.IO.UdpConnected.Received.Data":"Akka.IO.UdpConnected.Received.yml","Akka.IO.UdpConnected.CommandFailed":"Akka.IO.UdpConnected.CommandFailed.yml","Akka.IO.UdpConnected.CommandFailed.#ctor(Akka.IO.UdpConnected.Command)":"Akka.IO.UdpConnected.CommandFailed.yml","Akka.IO.UdpConnected.CommandFailed.Cmd":"Akka.IO.UdpConnected.CommandFailed.yml","Akka.IO.UdpConnected.Connected":"Akka.IO.UdpConnected.Connected.yml","Akka.IO.UdpConnected.Connected.Instance":"Akka.IO.UdpConnected.Connected.yml","Akka.IO.UdpConnected.Disconnected":"Akka.IO.UdpConnected.Disconnected.yml","Akka.IO.UdpConnected.Disconnected.Instance":"Akka.IO.UdpConnected.Disconnected.yml","Akka.IO.UdpConnectedExt":"Akka.IO.UdpConnectedExt.yml","Akka.IO.UdpConnectedExt.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.IO.UdpConnectedExt.yml","Akka.IO.UdpConnectedExt.Manager":"Akka.IO.UdpConnectedExt.yml","Akka.IO.ByteBuffer":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.#ctor(System.Byte[])":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.#ctor(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Clear":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Limit(System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Flip":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.HasRemaining":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Remaining":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Array":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Put(System.Byte[])":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Wrap(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Wrap(System.Byte[])":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Allocate(System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Order(Akka.IO.ByteOrder)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Put(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Get(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Get(System.Byte[])":"Akka.IO.ByteBuffer.yml","Akka.IO.ByteBuffer.Put(Akka.IO.ByteBuffer,System.Int32)":"Akka.IO.ByteBuffer.yml","Akka.IO.IBufferPool":"Akka.IO.IBufferPool.yml","Akka.IO.IBufferPool.Acquire":"Akka.IO.IBufferPool.yml","Akka.IO.IBufferPool.Release(Akka.IO.ByteBuffer)":"Akka.IO.IBufferPool.yml","Akka.IO.Inet":"Akka.IO.Inet.yml","Akka.IO.Inet.SocketOption":"Akka.IO.Inet.SocketOption.yml","Akka.IO.Inet.SocketOption.BeforeDatagramBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SocketOption.yml","Akka.IO.Inet.SocketOption.BeforeServerSocketBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SocketOption.yml","Akka.IO.Inet.SocketOption.BeforeConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SocketOption.yml","Akka.IO.Inet.SocketOption.AfterConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SocketOption.yml","Akka.IO.Inet.AbstractSocketOption":"Akka.IO.Inet.AbstractSocketOption.yml","Akka.IO.Inet.SocketOptionV2":"Akka.IO.Inet.SocketOptionV2.yml","Akka.IO.Inet.SocketOptionV2.AfterBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SocketOptionV2.yml","Akka.IO.Inet.AbstractSocketOptionV2":"Akka.IO.Inet.AbstractSocketOptionV2.yml","Akka.IO.Inet.DatagramChannelCreator":"Akka.IO.Inet.DatagramChannelCreator.yml","Akka.IO.Inet.DatagramChannelCreator.Create":"Akka.IO.Inet.DatagramChannelCreator.yml","Akka.IO.Inet.SO":"Akka.IO.Inet.SO.yml","Akka.IO.Inet.SO.ReceiveBufferSize":"Akka.IO.Inet.SO.ReceiveBufferSize.yml","Akka.IO.Inet.SO.ReceiveBufferSize.#ctor(System.Int32)":"Akka.IO.Inet.SO.ReceiveBufferSize.yml","Akka.IO.Inet.SO.ReceiveBufferSize.BeforeServerSocketBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReceiveBufferSize.yml","Akka.IO.Inet.SO.ReceiveBufferSize.BeforeDatagramBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReceiveBufferSize.yml","Akka.IO.Inet.SO.ReceiveBufferSize.BeforeConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReceiveBufferSize.yml","Akka.IO.Inet.SO.ReuseAddress":"Akka.IO.Inet.SO.ReuseAddress.yml","Akka.IO.Inet.SO.ReuseAddress.#ctor(System.Boolean)":"Akka.IO.Inet.SO.ReuseAddress.yml","Akka.IO.Inet.SO.ReuseAddress.BeforeServerSocketBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReuseAddress.yml","Akka.IO.Inet.SO.ReuseAddress.BeforeDatagramBind(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReuseAddress.yml","Akka.IO.Inet.SO.ReuseAddress.BeforeConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.ReuseAddress.yml","Akka.IO.Inet.SO.SendBufferSize":"Akka.IO.Inet.SO.SendBufferSize.yml","Akka.IO.Inet.SO.SendBufferSize.#ctor(System.Int32)":"Akka.IO.Inet.SO.SendBufferSize.yml","Akka.IO.Inet.SO.SendBufferSize.AfterConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.SendBufferSize.yml","Akka.IO.Inet.SO.TrafficClass":"Akka.IO.Inet.SO.TrafficClass.yml","Akka.IO.Inet.SO.TrafficClass.#ctor(System.Int32)":"Akka.IO.Inet.SO.TrafficClass.yml","Akka.IO.Inet.SO.TrafficClass.AfterConnect(System.Net.Sockets.Socket)":"Akka.IO.Inet.SO.TrafficClass.yml","Akka.IO.Inet.SoForwarders":"Akka.IO.Inet.SoForwarders.yml","Akka.IO.IOExtension":"Akka.IO.IOExtension.yml","Akka.IO.IOExtension.Manager":"Akka.IO.IOExtension.yml","Akka.IO.SelectionHandlerSettings":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.#ctor(Akka.Configuration.Config)":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.MaxChannels":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.SelectorAssociationRetries":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.SelectorDispatcher":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.WorkerDispatcher":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.TraceLogging":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SelectionHandlerSettings.MaxChannelsPerSelector":"Akka.IO.SelectionHandlerSettings.yml","Akka.IO.SocketAsyncEventArgsPool":"Akka.IO.SocketAsyncEventArgsPool.yml","Akka.IO.SocketAsyncEventArgsPool.#ctor(System.Int32,System.Action{System.Net.Sockets.SocketAsyncEventArgs})":"Akka.IO.SocketAsyncEventArgsPool.yml","Akka.IO.SocketAsyncEventArgsPool.BufferSize":"Akka.IO.SocketAsyncEventArgsPool.yml","Akka.IO.SocketAsyncEventArgsPool.Request(System.Object)":"Akka.IO.SocketAsyncEventArgsPool.yml","Akka.IO.SocketAsyncEventArgsPool.Return(System.Net.Sockets.SocketAsyncEventArgs)":"Akka.IO.SocketAsyncEventArgsPool.yml","Akka.IO.SocketChannel":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.#ctor(System.Net.Sockets.Socket)":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Open":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.ConfigureBlocking(System.Boolean)":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Socket":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Register(Akka.Actor.IActorRef,System.Nullable{System.Net.Sockets.SocketAsyncOperation})":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.IsOpen":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Connect(System.Net.EndPoint)":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.FinishConnect":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Accept":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Read(Akka.IO.ByteBuffer)":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Write(Akka.IO.ByteBuffer)":"Akka.IO.SocketChannel.yml","Akka.IO.SocketChannel.Close":"Akka.IO.SocketChannel.yml","Akka.IO.Tcp":"Akka.IO.Tcp.yml","Akka.IO.Tcp.Instance":"Akka.IO.Tcp.yml","Akka.IO.Tcp.Manager(Akka.Actor.ActorSystem)":"Akka.IO.Tcp.yml","Akka.IO.Tcp.CreateExtension(Akka.Actor.ExtendedActorSystem)":"Akka.IO.Tcp.yml","Akka.IO.Tcp.Message":"Akka.IO.Tcp.Message.yml","Akka.IO.Tcp.Command":"Akka.IO.Tcp.Command.yml","Akka.IO.Tcp.Command.#ctor":"Akka.IO.Tcp.Command.yml","Akka.IO.Tcp.Command.FailureMessage":"Akka.IO.Tcp.Command.yml","Akka.IO.Tcp.Connect":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.#ctor(System.Net.EndPoint,System.Net.EndPoint,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption},System.Nullable{System.TimeSpan},System.Boolean)":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.RemoteAddress":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.LocalAddress":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.Options":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.Timeout":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Connect.PullMode":"Akka.IO.Tcp.Connect.yml","Akka.IO.Tcp.Bind":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.#ctor(Akka.Actor.IActorRef,System.Net.EndPoint,System.Int32,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption},System.Boolean)":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.Handler":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.LocalAddress":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.Backlog":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.Options":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Bind.PullMode":"Akka.IO.Tcp.Bind.yml","Akka.IO.Tcp.Register":"Akka.IO.Tcp.Register.yml","Akka.IO.Tcp.Register.#ctor(Akka.Actor.IActorRef,System.Boolean,System.Boolean)":"Akka.IO.Tcp.Register.yml","Akka.IO.Tcp.Register.Handler":"Akka.IO.Tcp.Register.yml","Akka.IO.Tcp.Register.KeepOpenonPeerClosed":"Akka.IO.Tcp.Register.yml","Akka.IO.Tcp.Register.UseResumeWriting":"Akka.IO.Tcp.Register.yml","Akka.IO.Tcp.Unbind":"Akka.IO.Tcp.Unbind.yml","Akka.IO.Tcp.Unbind.Instance":"Akka.IO.Tcp.Unbind.yml","Akka.IO.Tcp.CloseCommand":"Akka.IO.Tcp.CloseCommand.yml","Akka.IO.Tcp.CloseCommand.Event":"Akka.IO.Tcp.CloseCommand.yml","Akka.IO.Tcp.Close":"Akka.IO.Tcp.Close.yml","Akka.IO.Tcp.Close.Instance":"Akka.IO.Tcp.Close.yml","Akka.IO.Tcp.Close.Event":"Akka.IO.Tcp.Close.yml","Akka.IO.Tcp.ConfirmedClose":"Akka.IO.Tcp.ConfirmedClose.yml","Akka.IO.Tcp.ConfirmedClose.Instance":"Akka.IO.Tcp.ConfirmedClose.yml","Akka.IO.Tcp.ConfirmedClose.Event":"Akka.IO.Tcp.ConfirmedClose.yml","Akka.IO.Tcp.Abort":"Akka.IO.Tcp.Abort.yml","Akka.IO.Tcp.Abort.Instance":"Akka.IO.Tcp.Abort.yml","Akka.IO.Tcp.Abort.Event":"Akka.IO.Tcp.Abort.yml","Akka.IO.Tcp.NoAck":"Akka.IO.Tcp.NoAck.yml","Akka.IO.Tcp.NoAck.Instance":"Akka.IO.Tcp.NoAck.yml","Akka.IO.Tcp.NoAck.#ctor(System.Object)":"Akka.IO.Tcp.NoAck.yml","Akka.IO.Tcp.NoAck.Token":"Akka.IO.Tcp.NoAck.yml","Akka.IO.Tcp.WriteCommand":"Akka.IO.Tcp.WriteCommand.yml","Akka.IO.Tcp.WriteCommand.Prepend(Akka.IO.Tcp.SimpleWriteCommand)":"Akka.IO.Tcp.WriteCommand.yml","Akka.IO.Tcp.WriteCommand.Prepend(System.Collections.Generic.IEnumerable{Akka.IO.Tcp.WriteCommand})":"Akka.IO.Tcp.WriteCommand.yml","Akka.IO.Tcp.WriteCommand.Create(System.Collections.Generic.IEnumerable{Akka.IO.Tcp.WriteCommand})":"Akka.IO.Tcp.WriteCommand.yml","Akka.IO.Tcp.WriteCommand.Create(Akka.IO.Tcp.WriteCommand[])":"Akka.IO.Tcp.WriteCommand.yml","Akka.IO.Tcp.SimpleWriteCommand":"Akka.IO.Tcp.SimpleWriteCommand.yml","Akka.IO.Tcp.SimpleWriteCommand.Ack":"Akka.IO.Tcp.SimpleWriteCommand.yml","Akka.IO.Tcp.SimpleWriteCommand.WantsAck":"Akka.IO.Tcp.SimpleWriteCommand.yml","Akka.IO.Tcp.SimpleWriteCommand.Append(Akka.IO.Tcp.WriteCommand)":"Akka.IO.Tcp.SimpleWriteCommand.yml","Akka.IO.Tcp.Write":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.Write.Data":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.Write.Ack":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.Write.Create(Akka.IO.ByteString)":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.Write.Create(Akka.IO.ByteString,Akka.IO.Tcp.Event)":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.Write.Empty":"Akka.IO.Tcp.Write.yml","Akka.IO.Tcp.WriteFile":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.WriteFile.#ctor(System.String,System.Int64,System.Int64,Akka.IO.Tcp.Event)":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.WriteFile.FilePath":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.WriteFile.Position":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.WriteFile.Count":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.WriteFile.Ack":"Akka.IO.Tcp.WriteFile.yml","Akka.IO.Tcp.CompoundWrite":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.CompoundWrite.#ctor(Akka.IO.Tcp.SimpleWriteCommand,Akka.IO.Tcp.WriteCommand)":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.CompoundWrite.GetEnumerator":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.CompoundWrite.System#Collections#IEnumerable#GetEnumerator":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.CompoundWrite.Head":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.CompoundWrite.TailCommand":"Akka.IO.Tcp.CompoundWrite.yml","Akka.IO.Tcp.ResumeWriting":"Akka.IO.Tcp.ResumeWriting.yml","Akka.IO.Tcp.ResumeWriting.Instance":"Akka.IO.Tcp.ResumeWriting.yml","Akka.IO.Tcp.SuspendReading":"Akka.IO.Tcp.SuspendReading.yml","Akka.IO.Tcp.SuspendReading.Instance":"Akka.IO.Tcp.SuspendReading.yml","Akka.IO.Tcp.ResumeReading":"Akka.IO.Tcp.ResumeReading.yml","Akka.IO.Tcp.ResumeReading.Instance":"Akka.IO.Tcp.ResumeReading.yml","Akka.IO.Tcp.ResumeAccepting":"Akka.IO.Tcp.ResumeAccepting.yml","Akka.IO.Tcp.ResumeAccepting.BatchSize":"Akka.IO.Tcp.ResumeAccepting.yml","Akka.IO.Tcp.ResumeAccepting.#ctor(System.Int32)":"Akka.IO.Tcp.ResumeAccepting.yml","Akka.IO.Tcp.Event":"Akka.IO.Tcp.Event.yml","Akka.IO.Tcp.Received":"Akka.IO.Tcp.Received.yml","Akka.IO.Tcp.Received.#ctor(Akka.IO.ByteString)":"Akka.IO.Tcp.Received.yml","Akka.IO.Tcp.Received.Data":"Akka.IO.Tcp.Received.yml","Akka.IO.Tcp.Connected":"Akka.IO.Tcp.Connected.yml","Akka.IO.Tcp.Connected.#ctor(System.Net.EndPoint,System.Net.EndPoint)":"Akka.IO.Tcp.Connected.yml","Akka.IO.Tcp.Connected.RemoteAddress":"Akka.IO.Tcp.Connected.yml","Akka.IO.Tcp.Connected.LocalAddress":"Akka.IO.Tcp.Connected.yml","Akka.IO.Tcp.CommandFailed":"Akka.IO.Tcp.CommandFailed.yml","Akka.IO.Tcp.CommandFailed.#ctor(Akka.IO.Tcp.Command)":"Akka.IO.Tcp.CommandFailed.yml","Akka.IO.Tcp.CommandFailed.Cmd":"Akka.IO.Tcp.CommandFailed.yml","Akka.IO.Tcp.WritingResumed":"Akka.IO.Tcp.WritingResumed.yml","Akka.IO.Tcp.WritingResumed.Instance":"Akka.IO.Tcp.WritingResumed.yml","Akka.IO.Tcp.Bound":"Akka.IO.Tcp.Bound.yml","Akka.IO.Tcp.Bound.LocalAddress":"Akka.IO.Tcp.Bound.yml","Akka.IO.Tcp.Bound.#ctor(System.Net.EndPoint)":"Akka.IO.Tcp.Bound.yml","Akka.IO.Tcp.Unbound":"Akka.IO.Tcp.Unbound.yml","Akka.IO.Tcp.Unbound.Instance":"Akka.IO.Tcp.Unbound.yml","Akka.IO.Tcp.ConnectionClosed":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.ConnectionClosed.IsAborted":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.ConnectionClosed.IsConfirmed":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.ConnectionClosed.IsPeerClosed":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.ConnectionClosed.IsErrorClosed":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.ConnectionClosed.GetErrorCause":"Akka.IO.Tcp.ConnectionClosed.yml","Akka.IO.Tcp.Closed":"Akka.IO.Tcp.Closed.yml","Akka.IO.Tcp.Closed.Instance":"Akka.IO.Tcp.Closed.yml","Akka.IO.Tcp.Aborted":"Akka.IO.Tcp.Aborted.yml","Akka.IO.Tcp.Aborted.Instance":"Akka.IO.Tcp.Aborted.yml","Akka.IO.Tcp.Aborted.IsAborted":"Akka.IO.Tcp.Aborted.yml","Akka.IO.Tcp.ConfirmedClosed":"Akka.IO.Tcp.ConfirmedClosed.yml","Akka.IO.Tcp.ConfirmedClosed.Instance":"Akka.IO.Tcp.ConfirmedClosed.yml","Akka.IO.Tcp.ConfirmedClosed.IsConfirmed":"Akka.IO.Tcp.ConfirmedClosed.yml","Akka.IO.Tcp.PeerClosed":"Akka.IO.Tcp.PeerClosed.yml","Akka.IO.Tcp.PeerClosed.Instance":"Akka.IO.Tcp.PeerClosed.yml","Akka.IO.Tcp.PeerClosed.IsPeerClosed":"Akka.IO.Tcp.PeerClosed.yml","Akka.IO.Tcp.ErrorClosed":"Akka.IO.Tcp.ErrorClosed.yml","Akka.IO.Tcp.ErrorClosed.#ctor(System.String)":"Akka.IO.Tcp.ErrorClosed.yml","Akka.IO.Tcp.ErrorClosed.IsErrorClosed":"Akka.IO.Tcp.ErrorClosed.yml","Akka.IO.Tcp.ErrorClosed.GetErrorCause":"Akka.IO.Tcp.ErrorClosed.yml","Akka.IO.TcpExt":"Akka.IO.TcpExt.yml","Akka.IO.TcpExt.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.IO.TcpExt.yml","Akka.IO.TcpExt.Manager":"Akka.IO.TcpExt.yml","Akka.IO.TcpExt.GetManager":"Akka.IO.TcpExt.yml","Akka.IO.TcpExt.Settings":"Akka.IO.TcpExt.yml","Akka.IO.TcpExt.TcpSettings":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.#ctor(Akka.Configuration.Config)":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.NrOfSelectors":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.BatchAcceptLimit":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.DirectBufferSize":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.MaxDirectBufferPoolSize":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.RegisterTimeout":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.ReceivedMessageSizeLimit":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.ManagementDispatcher":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.FileIODispatcher":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.TransferToLimit":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpExt.TcpSettings.FinishConnectRetries":"Akka.IO.TcpExt.TcpSettings.yml","Akka.IO.TcpMessage":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Connect(System.Net.EndPoint,System.Net.EndPoint,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption},System.Nullable{System.TimeSpan},System.Boolean)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Connect(System.Net.EndPoint)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Bind(Akka.Actor.IActorRef,System.Net.EndPoint,System.Int32,System.Collections.Generic.IEnumerable{Akka.IO.Inet.SocketOption},System.Boolean)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Bind(Akka.Actor.IActorRef,System.Net.EndPoint,System.Int32)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Register(Akka.Actor.IActorRef,System.Boolean,System.Boolean)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Unbind":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Close":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.ConfirmedClose":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Abort":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.NoAck(System.Object)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.Write(Akka.IO.ByteString,Akka.IO.Tcp.Event)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.ResumeWriting":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.SuspendReading":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.ResumeReading":"Akka.IO.TcpMessage.yml","Akka.IO.TcpMessage.ResumeAccepting(System.Int32)":"Akka.IO.TcpMessage.yml","Akka.IO.TcpExtensions":"Akka.IO.TcpExtensions.yml","Akka.IO.TcpExtensions.Tcp(Akka.Actor.ActorSystem)":"Akka.IO.TcpExtensions.yml","Akka.IO.ByteString":"Akka.IO.ByteString.yml","Akka.IO.ByteString.FromArray(System.Byte[])":"Akka.IO.ByteString.yml","Akka.IO.ByteString.FromArray(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.FromString(System.String)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.FromString(System.String,System.Text.Encoding)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.FromByteBuffer(Akka.IO.ByteBuffer)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Empty":"Akka.IO.ByteString.yml","Akka.IO.ByteString.NewBuilder":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Item(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.AsByteBuffer":"Akka.IO.ByteString.yml","Akka.IO.ByteString.newBuilder":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Iterator":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Head":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Tail":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Last":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Init":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Slice(System.Int32,System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Take(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.TakeRight(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Drop(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.DropRight(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.TakeWhile(System.Func{System.Byte,System.Boolean})":"Akka.IO.ByteString.yml","Akka.IO.ByteString.DropWhile(System.Func{System.Byte,System.Boolean})":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Span(System.Func{System.Byte,System.Boolean})":"Akka.IO.ByteString.yml","Akka.IO.ByteString.SplitAt(System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.IndexWhere(System.Func{System.Byte,System.Boolean})":"Akka.IO.ByteString.yml","Akka.IO.ByteString.IndexOf(System.Byte)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.ToArray":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Compact":"Akka.IO.ByteString.yml","Akka.IO.ByteString.IsCompact":"Akka.IO.ByteString.yml","Akka.IO.ByteString.GetEnumerator":"Akka.IO.ByteString.yml","Akka.IO.ByteString.System#Collections#IEnumerable#GetEnumerator":"Akka.IO.ByteString.yml","Akka.IO.ByteString.IsEmpty":"Akka.IO.ByteString.yml","Akka.IO.ByteString.NonEmpty":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Count":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Concat(Akka.IO.ByteString)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.DecodeString":"Akka.IO.ByteString.yml","Akka.IO.ByteString.DecodeString(System.Text.Encoding)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.op_Addition(Akka.IO.ByteString,Akka.IO.ByteString)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.CopyToBuffer(Akka.IO.ByteBuffer)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Create(Akka.IO.ByteBuffer)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Create(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Create(System.Byte[])":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Equals(Akka.IO.ByteString)":"Akka.IO.ByteString.yml","Akka.IO.ByteString.Equals(System.Object)":"Akka.IO.ByteString.yml","Akka.IO.CompactByteString":"Akka.IO.CompactByteString.yml","Akka.IO.CompactByteString.FromString(System.String,System.Text.Encoding)":"Akka.IO.CompactByteString.yml","Akka.IO.CompactByteString.FromArray(System.Byte[],System.Int32,System.Int32)":"Akka.IO.CompactByteString.yml","Akka.IO.CompactByteString.IsCompact":"Akka.IO.CompactByteString.yml","Akka.IO.CompactByteString.Compact":"Akka.IO.CompactByteString.yml","Akka.IO.ByteStringBuilder":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.FillArray(System.Int32)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.FillByteBuffer(System.Int32,Akka.IO.ByteOrder,System.Action{Akka.IO.ByteBuffer})":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.Length":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.SizeHint(System.Int32)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.Append(System.Collections.Generic.IEnumerable{System.Byte})":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.PutByte(System.Byte)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.PutShort(System.Int32,Akka.IO.ByteOrder)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.PutInt(System.Int32,Akka.IO.ByteOrder)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.PutBytes(System.Byte[])":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.PutBytes(System.Byte[],System.Int32,System.Int32)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.op_Addition(Akka.IO.ByteStringBuilder,System.Byte)":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteStringBuilder.Result":"Akka.IO.ByteStringBuilder.yml","Akka.IO.ByteOrder":"Akka.IO.ByteOrder.yml","Akka.IO.ByteOrder.BigEndian":"Akka.IO.ByteOrder.yml","Akka.IO.ByteOrder.LittleEndian":"Akka.IO.ByteOrder.yml","Akka.Routing":"Akka.Routing.yml","Akka.Routing.IConsistentHashable":"Akka.Routing.IConsistentHashable.yml","Akka.Routing.IConsistentHashable.ConsistentHashKey":"Akka.Routing.IConsistentHashable.yml","Akka.Routing.ConsistentHashableEnvelope":"Akka.Routing.ConsistentHashableEnvelope.yml","Akka.Routing.ConsistentHashableEnvelope.#ctor(System.Object,System.Object)":"Akka.Routing.ConsistentHashableEnvelope.yml","Akka.Routing.ConsistentHashableEnvelope.HashKey":"Akka.Routing.ConsistentHashableEnvelope.yml","Akka.Routing.ConsistentHashableEnvelope.ConsistentHashKey":"Akka.Routing.ConsistentHashableEnvelope.yml","Akka.Routing.ConsistentHashMapping":"Akka.Routing.ConsistentHashMapping.yml","Akka.Routing.ConsistentHashingRoutingLogic":"Akka.Routing.ConsistentHashingRoutingLogic.yml","Akka.Routing.ConsistentHashingRoutingLogic.#ctor(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingRoutingLogic.yml","Akka.Routing.ConsistentHashingRoutingLogic.#ctor(Akka.Actor.ActorSystem,System.Int32,Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingRoutingLogic.yml","Akka.Routing.ConsistentHashingRoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.ConsistentHashingRoutingLogic.yml","Akka.Routing.ConsistentHashingRoutingLogic.WithHashMapping(Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingRoutingLogic.yml","Akka.Routing.ConsistentHashingPool":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.#ctor(System.Int32)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.#ctor(System.Int32,Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean,System.Int32,Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.VirtualNodesFactor":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithDispatcher(System.String)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithVirtualNodesFactor(System.Int32)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithHashMapping(Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingPool.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.NrOfInstances":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.UsePoolDispatcher":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.Resizer":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.SupervisorStrategy":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.RouterDispatcher":"Akka.Routing.ConsistentHashingPool.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHashingGroup":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(System.String[])":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(System.Collections.Generic.IEnumerable{System.String})":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(System.Collections.Generic.IEnumerable{Akka.Actor.IActorRef})":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.Int32,Akka.Routing.ConsistentHashMapping,System.String)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.VirtualNodesFactor":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.WithDispatcher(System.String)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.WithVirtualNodesFactor(System.Int32)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.WithHashMapping(Akka.Routing.ConsistentHashMapping)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingGroup.yml","Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate":"Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.Paths":"Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.RouterDispatcher":"Akka.Routing.ConsistentHashingGroup.ConsistentHashingGroupSurrogate.yml","Akka.Routing.SmallestMailboxRoutingLogic":"Akka.Routing.SmallestMailboxRoutingLogic.yml","Akka.Routing.SmallestMailboxRoutingLogic.#ctor":"Akka.Routing.SmallestMailboxRoutingLogic.yml","Akka.Routing.SmallestMailboxRoutingLogic.#ctor(System.Int32)":"Akka.Routing.SmallestMailboxRoutingLogic.yml","Akka.Routing.SmallestMailboxRoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.SmallestMailboxRoutingLogic.yml","Akka.Routing.SmallestMailboxPool":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.#ctor(System.Int32)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.WithDispatcher(System.String)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.SmallestMailboxPool.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.NrOfInstances":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.UsePoolDispatcher":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.Resizer":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.SupervisorStrategy":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.RouterDispatcher":"Akka.Routing.SmallestMailboxPool.SmallestMailboxPoolSurrogate.yml","Akka.Routing.TailChopping":"Akka.Routing.TailChopping.yml","Akka.Routing.TailChopping.#ctor(Akka.Actor.IScheduler,System.TimeSpan,System.TimeSpan)":"Akka.Routing.TailChopping.yml","Akka.Routing.TailChopping.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.TailChopping.yml","Akka.Routing.TailChoppingPool":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.#ctor(System.Int32,System.TimeSpan,System.TimeSpan)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.TimeSpan,System.TimeSpan,System.Boolean)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.Within":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.Interval":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.WithDispatcher(System.String)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingPool.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.Interval":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.Within":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.NrOfInstances":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.UsePoolDispatcher":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.Resizer":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.SupervisorStrategy":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.RouterDispatcher":"Akka.Routing.TailChoppingPool.TailChoppingPoolSurrogate.yml","Akka.Routing.TailChoppingGroup":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.TimeSpan,System.TimeSpan)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.TimeSpan,System.TimeSpan,System.String)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.Within":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.Interval":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.WithDispatcher(System.String)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingGroup.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.Paths":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.Within":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.Interval":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.RouterDispatcher":"Akka.Routing.TailChoppingGroup.TailChoppingGroupSurrogate.yml","Akka.Routing.BroadcastRoutingLogic":"Akka.Routing.BroadcastRoutingLogic.yml","Akka.Routing.BroadcastRoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.BroadcastRoutingLogic.yml","Akka.Routing.BroadcastPool":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.#ctor(System.Int32)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.WithDispatcher(System.String)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastPool.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.NrOfInstances":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.UsePoolDispatcher":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.Resizer":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.SupervisorStrategy":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.RouterDispatcher":"Akka.Routing.BroadcastPool.BroadcastPoolSurrogate.yml","Akka.Routing.BroadcastGroup":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.#ctor(System.String[])":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.#ctor(System.Collections.Generic.IEnumerable{System.String})":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.#ctor(System.Collections.Generic.IEnumerable{Akka.Actor.IActorRef})":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.WithDispatcher(System.String)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastGroup.yml","Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate":"Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.yml","Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.yml","Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.Paths":"Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.yml","Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.RouterDispatcher":"Akka.Routing.BroadcastGroup.BroadcastGroupSurrogate.yml","Akka.Routing.ConsistentHash`1":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.#ctor(System.Collections.Generic.SortedDictionary{System.Int32,`0},System.Int32)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.Add(`0)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.Remove(`0)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.NodeFor(System.Byte[])":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.NodeFor(System.String)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.IsEmpty":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.op_Addition(Akka.Routing.ConsistentHash{`0},`0)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.op_Subtraction(Akka.Routing.ConsistentHash{`0},`0)":"Akka.Routing.ConsistentHash-1.yml","Akka.Routing.ConsistentHash`1.ConsistentHashingGroupSurrogate":"Akka.Routing.ConsistentHash-1.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHash`1.ConsistentHashingGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHash-1.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHash`1.ConsistentHashingGroupSurrogate.Paths":"Akka.Routing.ConsistentHash-1.ConsistentHashingGroupSurrogate.yml","Akka.Routing.ConsistentHash":"Akka.Routing.ConsistentHash.yml","Akka.Routing.ConsistentHash.Create``1(System.Collections.Generic.IEnumerable{``0},System.Int32)":"Akka.Routing.ConsistentHash.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.NrOfInstances":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.UsePoolDispatcher":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.Resizer":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.SupervisorStrategy":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.RouterDispatcher":"Akka.Routing.ConsistentHash.ConsistentHashingPoolSurrogate.yml","Akka.Routing.IListeners":"Akka.Routing.IListeners.yml","Akka.Routing.IListeners.Listeners":"Akka.Routing.IListeners.yml","Akka.Routing.ListenerMessage":"Akka.Routing.ListenerMessage.yml","Akka.Routing.Listen":"Akka.Routing.Listen.yml","Akka.Routing.Listen.#ctor(Akka.Actor.IActorRef)":"Akka.Routing.Listen.yml","Akka.Routing.Listen.Listener":"Akka.Routing.Listen.yml","Akka.Routing.Deafen":"Akka.Routing.Deafen.yml","Akka.Routing.Deafen.#ctor(Akka.Actor.IActorRef)":"Akka.Routing.Deafen.yml","Akka.Routing.Deafen.Listener":"Akka.Routing.Deafen.yml","Akka.Routing.WithListeners":"Akka.Routing.WithListeners.yml","Akka.Routing.WithListeners.#ctor(System.Action{Akka.Actor.IActorRef})":"Akka.Routing.WithListeners.yml","Akka.Routing.WithListeners.ListenerFunction":"Akka.Routing.WithListeners.yml","Akka.Routing.ListenerSupport":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.Listeners":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.ListenerReceive":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.Add(Akka.Actor.IActorRef)":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.Remove(Akka.Actor.IActorRef)":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.Gossip(System.Object)":"Akka.Routing.ListenerSupport.yml","Akka.Routing.ListenerSupport.Gossip(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.ListenerSupport.yml","Akka.Routing.RandomLogic":"Akka.Routing.RandomLogic.yml","Akka.Routing.RandomLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.RandomLogic.yml","Akka.Routing.RandomPool":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.#ctor(System.Int32)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.WithDispatcher(System.String)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RandomPool.yml","Akka.Routing.RandomPool.RandomPoolSurrogate":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.NrOfInstances":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.UsePoolDispatcher":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.Resizer":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.SupervisorStrategy":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.RouterDispatcher":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomPool.RandomPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RandomPool.RandomPoolSurrogate.yml","Akka.Routing.RandomGroup":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.#ctor(System.String[])":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.#ctor(System.Collections.Generic.IEnumerable{System.String})":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.WithDispatcher(System.String)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RandomGroup.yml","Akka.Routing.RandomGroup.RandomGroupSurrogate":"Akka.Routing.RandomGroup.RandomGroupSurrogate.yml","Akka.Routing.RandomGroup.RandomGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RandomGroup.RandomGroupSurrogate.yml","Akka.Routing.RandomGroup.RandomGroupSurrogate.Paths":"Akka.Routing.RandomGroup.RandomGroupSurrogate.yml","Akka.Routing.RandomGroup.RandomGroupSurrogate.RouterDispatcher":"Akka.Routing.RandomGroup.RandomGroupSurrogate.yml","Akka.Routing.Resize":"Akka.Routing.Resize.yml","Akka.Routing.Resizer":"Akka.Routing.Resizer.yml","Akka.Routing.Resizer.IsTimeForResize(System.Int64)":"Akka.Routing.Resizer.yml","Akka.Routing.Resizer.Resize(System.Collections.Generic.IEnumerable{Akka.Routing.Routee})":"Akka.Routing.Resizer.yml","Akka.Routing.Resizer.FromConfig(Akka.Configuration.Config)":"Akka.Routing.Resizer.yml","Akka.Routing.DefaultResizer":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.#ctor(System.Int32,System.Int32,System.Int32,System.Double,System.Double,System.Double,System.Int32)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.FromConfig(Akka.Configuration.Config)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.IsTimeForResize(System.Int64)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Resize(System.Collections.Generic.IEnumerable{Akka.Routing.Routee})":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Capacity(System.Collections.Generic.IEnumerable{Akka.Routing.Routee})":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Pressure(System.Collections.Generic.IEnumerable{Akka.Routing.Routee})":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Filter(System.Int32,System.Int32)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Rampup(System.Int32,System.Int32)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Backoff(System.Int32,System.Int32)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.LowerBound":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.UpperBound":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.PressureThreshold":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.RampupRate":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.BackoffThreshold":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.BackoffRate":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.MessagesPerResize":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Equals(Akka.Routing.DefaultResizer)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.Equals(System.Object)":"Akka.Routing.DefaultResizer.yml","Akka.Routing.DefaultResizer.GetHashCode":"Akka.Routing.DefaultResizer.yml","Akka.Routing.RoundRobinRoutingLogic":"Akka.Routing.RoundRobinRoutingLogic.yml","Akka.Routing.RoundRobinRoutingLogic.#ctor":"Akka.Routing.RoundRobinRoutingLogic.yml","Akka.Routing.RoundRobinRoutingLogic.#ctor(System.Int32)":"Akka.Routing.RoundRobinRoutingLogic.yml","Akka.Routing.RoundRobinRoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.RoundRobinRoutingLogic.yml","Akka.Routing.RoundRobinPool":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.#ctor(System.Int32)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.#ctor(System.Int32,Akka.Routing.Resizer)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.WithDispatcher(System.String)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinPool.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.NrOfInstances":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.UsePoolDispatcher":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.Resizer":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.SupervisorStrategy":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.RouterDispatcher":"Akka.Routing.RoundRobinPool.RoundRobinPoolSurrogate.yml","Akka.Routing.RoundRobinGroup":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.#ctor(System.String[])":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.#ctor(System.Collections.Generic.IEnumerable{System.String})":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.#ctor(System.Collections.Generic.IEnumerable{Akka.Actor.IActorRef})":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.WithDispatcher(System.String)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinGroup.yml","Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate":"Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.yml","Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.yml","Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.Paths":"Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.yml","Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.RouterDispatcher":"Akka.Routing.RoundRobinGroup.RoundRobinGroupSurrogate.yml","Akka.Routing.Routee":"Akka.Routing.Routee.yml","Akka.Routing.Routee.NoRoutee":"Akka.Routing.Routee.yml","Akka.Routing.Routee.Send(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.Routee.yml","Akka.Routing.Routee.Ask(System.Object,System.Nullable{System.TimeSpan})":"Akka.Routing.Routee.yml","Akka.Routing.Routee.FromActorRef(Akka.Actor.IActorRef)":"Akka.Routing.Routee.yml","Akka.Routing.ActorRefRoutee":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.Actor":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.#ctor(Akka.Actor.IActorRef)":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.Send(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.Ask(System.Object,System.Nullable{System.TimeSpan})":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.Equals(System.Object)":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.Equals(Akka.Routing.ActorRefRoutee)":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorRefRoutee.GetHashCode":"Akka.Routing.ActorRefRoutee.yml","Akka.Routing.ActorSelectionRoutee":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.Selection":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.#ctor(Akka.Actor.ActorSelection)":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.Send(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.Ask(System.Object,System.Nullable{System.TimeSpan})":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.Equals(System.Object)":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.Equals(Akka.Routing.ActorSelectionRoutee)":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.ActorSelectionRoutee.GetHashCode":"Akka.Routing.ActorSelectionRoutee.yml","Akka.Routing.RouterEnvelope":"Akka.Routing.RouterEnvelope.yml","Akka.Routing.RouterEnvelope.#ctor(System.Object)":"Akka.Routing.RouterEnvelope.yml","Akka.Routing.RouterEnvelope.Message":"Akka.Routing.RouterEnvelope.yml","Akka.Routing.Broadcast":"Akka.Routing.Broadcast.yml","Akka.Routing.Broadcast.#ctor(System.Object)":"Akka.Routing.Broadcast.yml","Akka.Routing.SeveralRoutees":"Akka.Routing.SeveralRoutees.yml","Akka.Routing.SeveralRoutees.#ctor(Akka.Routing.Routee[])":"Akka.Routing.SeveralRoutees.yml","Akka.Routing.SeveralRoutees.Send(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.SeveralRoutees.yml","Akka.Routing.RoutingLogic":"Akka.Routing.RoutingLogic.yml","Akka.Routing.RoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.RoutingLogic.yml","Akka.Routing.Router":"Akka.Routing.Router.yml","Akka.Routing.Router.#ctor(Akka.Routing.RoutingLogic,Akka.Actor.IActorRef,Akka.Actor.IActorRef[])":"Akka.Routing.Router.yml","Akka.Routing.Router.#ctor(Akka.Routing.RoutingLogic,Akka.Routing.Routee[])":"Akka.Routing.Router.yml","Akka.Routing.Router.Routees":"Akka.Routing.Router.yml","Akka.Routing.Router.RoutingLogic":"Akka.Routing.Router.yml","Akka.Routing.Router.Route(System.Object,Akka.Actor.IActorRef)":"Akka.Routing.Router.yml","Akka.Routing.Router.Send(Akka.Routing.Routee,System.Object,Akka.Actor.IActorRef)":"Akka.Routing.Router.yml","Akka.Routing.Router.WithRoutees(Akka.Routing.Routee[])":"Akka.Routing.Router.yml","Akka.Routing.Router.AddRoutee(Akka.Routing.Routee)":"Akka.Routing.Router.yml","Akka.Routing.Router.AddRoutee(Akka.Actor.IActorRef)":"Akka.Routing.Router.yml","Akka.Routing.Router.AddRoutee(Akka.Actor.ActorSelection)":"Akka.Routing.Router.yml","Akka.Routing.Router.RemoveRoutee(Akka.Routing.Routee)":"Akka.Routing.Router.yml","Akka.Routing.Router.RemoveRoutee(Akka.Actor.IActorRef)":"Akka.Routing.Router.yml","Akka.Routing.Router.RemoveRoutee(Akka.Actor.ActorSelection)":"Akka.Routing.Router.yml","Akka.Routing.RouterConfig":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.#ctor":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.#ctor(System.String)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.NoRouter":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.RouterDispatcher":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.RoutingLogicController(Akka.Routing.RoutingLogic)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.IsManagementMessage(System.Object)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.StopRouterWhenAllRouteesRemoved":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.VerifyConfig(Akka.Actor.ActorPath)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.Equals(Akka.Routing.RouterConfig)":"Akka.Routing.RouterConfig.yml","Akka.Routing.RouterConfig.Equals(System.Object)":"Akka.Routing.RouterConfig.yml","Akka.Routing.Group":"Akka.Routing.Group.yml","Akka.Routing.Group.#ctor(System.Collections.Generic.IEnumerable{System.String},System.String)":"Akka.Routing.Group.yml","Akka.Routing.Group.Paths":"Akka.Routing.Group.yml","Akka.Routing.Group.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.Group.yml","Akka.Routing.Group.Props":"Akka.Routing.Group.yml","Akka.Routing.Group.Equals(Akka.Routing.Group)":"Akka.Routing.Group.yml","Akka.Routing.Group.Equals(System.Object)":"Akka.Routing.Group.yml","Akka.Routing.Group.GetHashCode":"Akka.Routing.Group.yml","Akka.Routing.Pool":"Akka.Routing.Pool.yml","Akka.Routing.Pool.#ctor(System.Int32,Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.Pool.yml","Akka.Routing.Pool.NrOfInstances":"Akka.Routing.Pool.yml","Akka.Routing.Pool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.Pool.yml","Akka.Routing.Pool.UsePoolDispatcher":"Akka.Routing.Pool.yml","Akka.Routing.Pool.Resizer":"Akka.Routing.Pool.yml","Akka.Routing.Pool.SupervisorStrategy":"Akka.Routing.Pool.yml","Akka.Routing.Pool.Props(Akka.Actor.Props)":"Akka.Routing.Pool.yml","Akka.Routing.Pool.StopRouterWhenAllRouteesRemoved":"Akka.Routing.Pool.yml","Akka.Routing.Pool.DefaultSupervisorStrategy":"Akka.Routing.Pool.yml","Akka.Routing.Pool.Equals(Akka.Routing.Pool)":"Akka.Routing.Pool.yml","Akka.Routing.Pool.Equals(System.Object)":"Akka.Routing.Pool.yml","Akka.Routing.Pool.GetHashCode":"Akka.Routing.Pool.yml","Akka.Routing.CustomRouterConfig":"Akka.Routing.CustomRouterConfig.yml","Akka.Routing.CustomRouterConfig.#ctor":"Akka.Routing.CustomRouterConfig.yml","Akka.Routing.CustomRouterConfig.#ctor(System.String)":"Akka.Routing.CustomRouterConfig.yml","Akka.Routing.FromConfig":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.#ctor":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.#ctor(Akka.Routing.Resizer,Akka.Actor.SupervisorStrategy,System.String)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.Instance":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.VerifyConfig(Akka.Actor.ActorPath)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.WithDispatcher(System.String)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.Props":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.FromConfig.yml","Akka.Routing.FromConfig.FromConfigSurrogate":"Akka.Routing.FromConfig.FromConfigSurrogate.yml","Akka.Routing.FromConfig.FromConfigSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.FromConfig.FromConfigSurrogate.yml","Akka.Routing.NoRouter":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.#ctor":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.RouterDispatcher":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.Props(Akka.Actor.Props)":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.Instance":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.NoRouter.yml","Akka.Routing.NoRouter.NoRouterSurrogate":"Akka.Routing.NoRouter.NoRouterSurrogate.yml","Akka.Routing.NoRouter.NoRouterSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.NoRouter.NoRouterSurrogate.yml","Akka.Routing.RouterMessage":"Akka.Routing.RouterMessage.yml","Akka.Routing.RouterMessage.GetRoutees":"Akka.Routing.RouterMessage.yml","Akka.Routing.RouterManagementMessage":"Akka.Routing.RouterManagementMessage.yml","Akka.Routing.GetRoutees":"Akka.Routing.GetRoutees.yml","Akka.Routing.Routees":"Akka.Routing.Routees.yml","Akka.Routing.Routees.#ctor(System.Collections.Generic.IEnumerable{Akka.Routing.Routee})":"Akka.Routing.Routees.yml","Akka.Routing.Routees.Members":"Akka.Routing.Routees.yml","Akka.Routing.RemoveRoutee":"Akka.Routing.RemoveRoutee.yml","Akka.Routing.RemoveRoutee.#ctor(Akka.Routing.Routee)":"Akka.Routing.RemoveRoutee.yml","Akka.Routing.RemoveRoutee.Routee":"Akka.Routing.RemoveRoutee.yml","Akka.Routing.AddRoutee":"Akka.Routing.AddRoutee.yml","Akka.Routing.AddRoutee.#ctor(Akka.Routing.Routee)":"Akka.Routing.AddRoutee.yml","Akka.Routing.AddRoutee.Routee":"Akka.Routing.AddRoutee.yml","Akka.Routing.AdjustPoolSize":"Akka.Routing.AdjustPoolSize.yml","Akka.Routing.AdjustPoolSize.#ctor(System.Int32)":"Akka.Routing.AdjustPoolSize.yml","Akka.Routing.AdjustPoolSize.Change":"Akka.Routing.AdjustPoolSize.yml","Akka.Routing.ScatterGatherFirstCompletedRoutingLogic":"Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.yml","Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.#ctor(System.TimeSpan)":"Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.yml","Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.Select(System.Object,Akka.Routing.Routee[])":"Akka.Routing.ScatterGatherFirstCompletedRoutingLogic.yml","Akka.Routing.ScatterGatherFirstCompletedPool":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.#ctor(Akka.Configuration.Config)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.#ctor(System.Int32)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.#ctor(System.Int32,System.TimeSpan)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.#ctor(System.Int32,Akka.Routing.Resizer,System.TimeSpan,Akka.Actor.SupervisorStrategy,System.String,System.Boolean)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.Within":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.GetNrOfInstances(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.WithSupervisorStrategy(Akka.Actor.SupervisorStrategy)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.WithResizer(Akka.Routing.Resizer)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.WithDispatcher(System.String)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.WithFallback(Akka.Routing.RouterConfig)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedPool.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.Within":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.NrOfInstances":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.UsePoolDispatcher":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.Resizer":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.SupervisorStrategy":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.RouterDispatcher":"Akka.Routing.ScatterGatherFirstCompletedPool.ScatterGatherFirstCompletedPoolSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedGroup":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.#ctor(Akka.Configuration.Config)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.#ctor(System.TimeSpan,System.String[])":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.TimeSpan)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.#ctor(System.Collections.Generic.IEnumerable{Akka.Actor.IActorRef},System.TimeSpan)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.#ctor(System.Collections.Generic.IEnumerable{System.String},System.TimeSpan,System.String)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.Within":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.CreateRouter(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.GetPaths(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.WithDispatcher(System.String)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedGroup.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate":"Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.Within":"Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.Paths":"Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.yml","Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.RouterDispatcher":"Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroupSurrogate.yml","Akka.Serialization":"Akka.Serialization.yml","Akka.Serialization.JavaSerializer":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.JavaSerializer.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.JavaSerializer.Identifier":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.JavaSerializer.IncludeManifest":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.JavaSerializer.ToBinary(System.Object)":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.JavaSerializer.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.JavaSerializer.yml","Akka.Serialization.ByteArraySerializer":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.ByteArraySerializer.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.ByteArraySerializer.Identifier":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.ByteArraySerializer.IncludeManifest":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.ByteArraySerializer.ToBinary(System.Object)":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.ByteArraySerializer.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.ByteArraySerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.Settings":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.Serializer":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.Identifier":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.IncludeManifest":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.ToBinary(System.Object)":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.NewtonSoftJsonSerializer.yml","Akka.Serialization.NewtonSoftJsonSerializer.AkkaContractResolver":"Akka.Serialization.NewtonSoftJsonSerializer.AkkaContractResolver.yml","Akka.Serialization.NewtonSoftJsonSerializer.AkkaContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)":"Akka.Serialization.NewtonSoftJsonSerializer.AkkaContractResolver.yml","Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter":"Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.yml","Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.#ctor(Akka.Serialization.NewtonSoftJsonSerializer)":"Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.yml","Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.CanConvert(System.Type)":"Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.yml","Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)":"Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.yml","Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)":"Akka.Serialization.NewtonSoftJsonSerializer.SurrogateConverter.yml","Akka.Serialization.NullSerializer":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.NullSerializer.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.NullSerializer.Identifier":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.NullSerializer.IncludeManifest":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.NullSerializer.ToBinary(System.Object)":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.NullSerializer.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.NullSerializer.yml","Akka.Serialization.Information":"Akka.Serialization.Information.yml","Akka.Serialization.Information.Address":"Akka.Serialization.Information.yml","Akka.Serialization.Information.System":"Akka.Serialization.Information.yml","Akka.Serialization.Serialization":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.SerializeWithTransport``1(Akka.Actor.ActorSystem,Akka.Actor.Address,System.Func{``0})":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.System":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.AddSerializer(Akka.Serialization.Serializer)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.AddSerializationMap(System.Type,Akka.Serialization.Serializer)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.Deserialize(System.Byte[],System.Int32,System.Type)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.Deserialize(System.Byte[],System.Int32,System.String)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.FindSerializerFor(System.Object)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.FindSerializerForType(System.Type)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.SerializedActorPath(Akka.Actor.IActorRef)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serialization.GetSerializerById(System.Int32)":"Akka.Serialization.Serialization.yml","Akka.Serialization.Serializer":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.system":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.Identifier":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.IncludeManifest":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.ToBinary(System.Object)":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.ToBinaryWithAddress(Akka.Actor.Address,System.Object)":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.Serializer.yml","Akka.Serialization.Serializer.TypeQualifiedNameForManifest(System.Type)":"Akka.Serialization.Serializer.yml","Akka.Serialization.SerializerWithStringManifest":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerWithStringManifest.#ctor(Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerWithStringManifest.IncludeManifest":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerWithStringManifest.FromBinary(System.Byte[],System.Type)":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerWithStringManifest.FromBinary(System.Byte[],System.String)":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerWithStringManifest.Manifest(System.Object)":"Akka.Serialization.SerializerWithStringManifest.yml","Akka.Serialization.SerializerIdentifierHelper":"Akka.Serialization.SerializerIdentifierHelper.yml","Akka.Serialization.SerializerIdentifierHelper.SerializationIdentifiers":"Akka.Serialization.SerializerIdentifierHelper.yml","Akka.Serialization.SerializerIdentifierHelper.GetSerializerIdentifierFromConfig(System.Type,Akka.Actor.ExtendedActorSystem)":"Akka.Serialization.SerializerIdentifierHelper.yml","Akka.Util":"Akka.Util.yml","Akka.Util.ByteIterator":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Len":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.HasNext":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Head":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Next":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Clear":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Clone":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Duplicate":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Take(System.Int32)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Drop(System.Int32)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Slice(System.Int32,System.Int32)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.TakeWhile(System.Func{System.Byte,System.Boolean})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.DropWhile(System.Func{System.Byte,System.Boolean})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.Span(System.Func{System.Byte,System.Boolean})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.IndexWhere(System.Func{System.Byte,System.Boolean})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.IndexOf(System.Byte)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.ToByteString":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.ForEach(System.Action{System.Byte})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.FoldLeft``1(``0,System.Func{``0,System.Byte,``0})":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.ToArray":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetByte":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetShort(Akka.IO.ByteOrder)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetInt(Akka.IO.ByteOrder)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetLong(Akka.IO.ByteOrder)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetBytes(System.Byte[],System.Int32,System.Int32)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.GetBytes(System.Int32)":"Akka.Util.ByteIterator.yml","Akka.Util.ByteIterator.CopyToBuffer(Akka.IO.ByteBuffer)":"Akka.Util.ByteIterator.yml","Akka.Util.ILinearSeq`1":"Akka.Util.ILinearSeq-1.yml","Akka.Util.ILinearSeq`1.IsEmpty":"Akka.Util.ILinearSeq-1.yml","Akka.Util.ILinearSeq`1.Head":"Akka.Util.ILinearSeq-1.yml","Akka.Util.ILinearSeq`1.Tail":"Akka.Util.ILinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.#ctor(`0[])":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.IsEmpty":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.Head":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.Tail":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.GetEnumerator":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.System#Collections#IEnumerable#GetEnumerator":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.ArrayLinearSeq`1.op_Implicit(`0[])~Akka.Util.ArrayLinearSeq{`0}":"Akka.Util.ArrayLinearSeq-1.yml","Akka.Util.FastLazy`1":"Akka.Util.FastLazy-1.yml","Akka.Util.FastLazy`1.#ctor(System.Func{`0})":"Akka.Util.FastLazy-1.yml","Akka.Util.FastLazy`1.IsValueCreated":"Akka.Util.FastLazy-1.yml","Akka.Util.FastLazy`1.Value":"Akka.Util.FastLazy-1.yml","Akka.Util.Index`2":"Akka.Util.Index-2.yml","Akka.Util.Index`2.#ctor":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Put(`0,`1)":"Akka.Util.Index-2.yml","Akka.Util.Index`2.FindValue(`0,System.Func{`1,System.Boolean})":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Item(`0)":"Akka.Util.Index-2.yml","Akka.Util.Index`2.ForEach(System.Action{`0,`1})":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Values":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Keys":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Remove(`0,`1)":"Akka.Util.Index-2.yml","Akka.Util.Index`2.RemoveValue(`1)":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Remove(`0)":"Akka.Util.Index-2.yml","Akka.Util.Index`2.IsEmpty":"Akka.Util.Index-2.yml","Akka.Util.Index`2.Clear":"Akka.Util.Index-2.yml","Akka.Util.ISurrogate":"Akka.Util.ISurrogate.yml","Akka.Util.ISurrogate.FromSurrogate(Akka.Actor.ActorSystem)":"Akka.Util.ISurrogate.yml","Akka.Util.ISurrogated":"Akka.Util.ISurrogated.yml","Akka.Util.ISurrogated.ToSurrogate(Akka.Actor.ActorSystem)":"Akka.Util.ISurrogated.yml","Akka.Util.RuntimeDetector":"Akka.Util.RuntimeDetector.yml","Akka.Util.RuntimeDetector.IsMono":"Akka.Util.RuntimeDetector.yml","Akka.Util.Result`1":"Akka.Util.Result-1.yml","Akka.Util.Result`1.IsSuccess":"Akka.Util.Result-1.yml","Akka.Util.Result`1.Value":"Akka.Util.Result-1.yml","Akka.Util.Result`1.Exception":"Akka.Util.Result-1.yml","Akka.Util.Result`1.#ctor(`0)":"Akka.Util.Result-1.yml","Akka.Util.Result`1.#ctor(System.Exception)":"Akka.Util.Result-1.yml","Akka.Util.Result`1.Equals(Akka.Util.Result{`0})":"Akka.Util.Result-1.yml","Akka.Util.Result`1.Equals(System.Object)":"Akka.Util.Result-1.yml","Akka.Util.Result`1.GetHashCode":"Akka.Util.Result-1.yml","Akka.Util.Result`1.op_Equality(Akka.Util.Result{`0},Akka.Util.Result{`0})":"Akka.Util.Result-1.yml","Akka.Util.Result`1.op_Inequality(Akka.Util.Result{`0},Akka.Util.Result{`0})":"Akka.Util.Result-1.yml","Akka.Util.Result":"Akka.Util.Result.yml","Akka.Util.Result.Success``1(``0)":"Akka.Util.Result.yml","Akka.Util.Result.Failure``1(System.Exception)":"Akka.Util.Result.yml","Akka.Util.Result.FromTask``1(System.Threading.Tasks.Task{``0})":"Akka.Util.Result.yml","Akka.Util.Result.From``1(System.Func{``0})":"Akka.Util.Result.yml","Akka.Util.StandardOutWriter":"Akka.Util.StandardOutWriter.yml","Akka.Util.StandardOutWriter.Write(System.String,System.Nullable{System.ConsoleColor},System.Nullable{System.ConsoleColor})":"Akka.Util.StandardOutWriter.yml","Akka.Util.StandardOutWriter.WriteLine(System.String,System.Nullable{System.ConsoleColor},System.Nullable{System.ConsoleColor})":"Akka.Util.StandardOutWriter.yml","Akka.Util.Either`2":"Akka.Util.Either-2.yml","Akka.Util.Either`2.#ctor(`0,`1)":"Akka.Util.Either-2.yml","Akka.Util.Either`2.IsLeft":"Akka.Util.Either-2.yml","Akka.Util.Either`2.IsRight":"Akka.Util.Either-2.yml","Akka.Util.Either`2.Right":"Akka.Util.Either-2.yml","Akka.Util.Either`2.Left":"Akka.Util.Either-2.yml","Akka.Util.Either`2.Value":"Akka.Util.Either-2.yml","Akka.Util.Either`2.ToRight":"Akka.Util.Either-2.yml","Akka.Util.Either`2.ToLeft":"Akka.Util.Either-2.yml","Akka.Util.Either`2.op_Implicit(Akka.Util.Left{`0})~Akka.Util.Either{`0,`1}":"Akka.Util.Either-2.yml","Akka.Util.Either`2.op_Implicit(Akka.Util.Right{`1})~Akka.Util.Either{`0,`1}":"Akka.Util.Either-2.yml","Akka.Util.Either`2.Map``2(System.Func{`0,``0},System.Func{`1,``1})":"Akka.Util.Either-2.yml","Akka.Util.Either`2.MapLeft``1(System.Func{`0,``0})":"Akka.Util.Either-2.yml","Akka.Util.Either`2.MapRight``1(System.Func{`1,``0})":"Akka.Util.Either-2.yml","Akka.Util.Either`2.Fold``1(System.Func{`0,``0},System.Func{`1,``0})":"Akka.Util.Either-2.yml","Akka.Util.Either":"Akka.Util.Either.yml","Akka.Util.Either.Left``1(``0)":"Akka.Util.Either.yml","Akka.Util.Either.Right``1(``0)":"Akka.Util.Either.yml","Akka.Util.Right`2":"Akka.Util.Right-2.yml","Akka.Util.Right`2.#ctor(`1)":"Akka.Util.Right-2.yml","Akka.Util.Right`2.IsLeft":"Akka.Util.Right-2.yml","Akka.Util.Right`2.IsRight":"Akka.Util.Right-2.yml","Akka.Util.Right`2.Value":"Akka.Util.Right-2.yml","Akka.Util.Right`1":"Akka.Util.Right-1.yml","Akka.Util.Right`1.#ctor(`0)":"Akka.Util.Right-1.yml","Akka.Util.Right`1.Value":"Akka.Util.Right-1.yml","Akka.Util.Right`1.IsLeft":"Akka.Util.Right-1.yml","Akka.Util.Right`1.IsRight":"Akka.Util.Right-1.yml","Akka.Util.Left`2":"Akka.Util.Left-2.yml","Akka.Util.Left`2.#ctor(`0)":"Akka.Util.Left-2.yml","Akka.Util.Left`2.IsLeft":"Akka.Util.Left-2.yml","Akka.Util.Left`2.IsRight":"Akka.Util.Left-2.yml","Akka.Util.Left`2.Value":"Akka.Util.Left-2.yml","Akka.Util.Left`1":"Akka.Util.Left-1.yml","Akka.Util.Left`1.#ctor(`0)":"Akka.Util.Left-1.yml","Akka.Util.Left`1.Value":"Akka.Util.Left-1.yml","Akka.Util.Left`1.IsLeft":"Akka.Util.Left-1.yml","Akka.Util.Left`1.IsRight":"Akka.Util.Left-1.yml","Akka.Util.AtomicReference`1":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.#ctor(`0)":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.#ctor":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.atomicValue":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.Value":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.CompareAndSet(`0,`0)":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.GetAndSet(`0)":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.op_Implicit(Akka.Util.AtomicReference{`0})~`0":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicReference`1.op_Implicit(`0)~Akka.Util.AtomicReference{`0}":"Akka.Util.AtomicReference-1.yml","Akka.Util.AtomicBoolean":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.#ctor(System.Boolean)":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.Value":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.CompareAndSet(System.Boolean,System.Boolean)":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.GetAndSet(System.Boolean)":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.op_Implicit(Akka.Util.AtomicBoolean)~System.Boolean":"Akka.Util.AtomicBoolean.yml","Akka.Util.AtomicBoolean.op_Implicit(System.Boolean)~Akka.Util.AtomicBoolean":"Akka.Util.AtomicBoolean.yml","Akka.Util.ConcurrentSet`1":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Int32,System.Int32)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Int32,System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.#ctor(System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer{`0})":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.IsEmpty":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.Count":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.Clear":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.Contains(`0)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#Generic#ICollection{T}#Add(`0)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#Generic#ICollection{T}#CopyTo(`0[],System.Int32)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#Generic#ICollection{T}#Remove(`0)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.System#Collections#IEnumerable#GetEnumerator":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.TryAdd(`0)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ConcurrentSet`1.TryRemove(`0)":"Akka.Util.ConcurrentSet-1.yml","Akka.Util.ListPriorityQueue":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.#ctor(System.Int32)":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.#ctor(System.Int32,System.Func{System.Object,System.Int32})":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.SetPriorityCalculator(System.Func{System.Object,System.Int32})":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.Enqueue(Akka.Actor.Envelope)":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.Dequeue":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.Peek":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.Count":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.ToString":"Akka.Util.ListPriorityQueue.yml","Akka.Util.ListPriorityQueue.IsConsistent":"Akka.Util.ListPriorityQueue.yml","Akka.Util.MonoConcurrentQueue`1":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.#ctor":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.#ctor(System.Collections.Generic.IEnumerable{`0})":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.IsEmpty":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#Concurrent#IProducerConsumerCollection{T}#TryAdd(`0)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#IEnumerable#GetEnumerator":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.GetEnumerator":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.CopyTo(`0[],System.Int32)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.ToArray":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#ICollection#IsSynchronized":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#Concurrent#IProducerConsumerCollection{T}#TryTake(`0@)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.System#Collections#ICollection#SyncRoot":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.Count":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.Enqueue(`0)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.TryDequeue(`0@)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MonoConcurrentQueue`1.TryPeek(`0@)":"Akka.Util.MonoConcurrentQueue-1.yml","Akka.Util.MurmurHash":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.StartMagicA":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.StartMagicB":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.StartHash(System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.NextMagicA(System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.NextMagicB(System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.ExtendHash(System.UInt32,System.UInt32,System.UInt32,System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.FinalizeHash(System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.ByteHash(System.Byte[])":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.ArrayHash``1(``0[])":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.StringHash(System.String)":"Akka.Util.MurmurHash.yml","Akka.Util.MurmurHash.SymmetricHash``1(System.Collections.Generic.IEnumerable{``0},System.UInt32)":"Akka.Util.MurmurHash.yml","Akka.Util.BitArrayHelpers":"Akka.Util.BitArrayHelpers.yml","Akka.Util.BitArrayHelpers.ToBytes(System.Collections.BitArray)":"Akka.Util.BitArrayHelpers.yml","Akka.Util.IResolver":"Akka.Util.IResolver.yml","Akka.Util.IResolver.Resolve``1(System.Object[])":"Akka.Util.IResolver.yml","Akka.Util.Resolve":"Akka.Util.Resolve.yml","Akka.Util.Resolve.Produce":"Akka.Util.Resolve.yml","Akka.Util.Resolve.ActorType":"Akka.Util.Resolve.yml","Akka.Util.Resolve.Resolver":"Akka.Util.Resolve.yml","Akka.Util.Resolve.SetResolver(Akka.Util.IResolver)":"Akka.Util.Resolve.yml","Akka.Util.Resolve.Release(Akka.Actor.ActorBase)":"Akka.Util.Resolve.yml","Akka.Util.Resolve`1":"Akka.Util.Resolve-1.yml","Akka.Util.Resolve`1.#ctor(System.Object[])":"Akka.Util.Resolve-1.yml","Akka.Util.Resolve`1.Produce":"Akka.Util.Resolve-1.yml","Akka.Util.Resolve`1.ActorType":"Akka.Util.Resolve-1.yml","Akka.Util.Resolve`1.Arguments":"Akka.Util.Resolve-1.yml","Akka.Util.ThreadLocalRandom":"Akka.Util.ThreadLocalRandom.yml","Akka.Util.ThreadLocalRandom.Current":"Akka.Util.ThreadLocalRandom.yml","Akka.Util.TokenBucket":"Akka.Util.TokenBucket.yml","Akka.Util.TokenBucket.#ctor(System.Int64,System.Int64)":"Akka.Util.TokenBucket.yml","Akka.Util.TokenBucket.Init":"Akka.Util.TokenBucket.yml","Akka.Util.TokenBucket.CurrentTime":"Akka.Util.TokenBucket.yml","Akka.Util.TokenBucket.Offer(System.Int64)":"Akka.Util.TokenBucket.yml","Akka.Util.TickTimeTokenBucket":"Akka.Util.TickTimeTokenBucket.yml","Akka.Util.TickTimeTokenBucket.#ctor(System.Int64,System.Int64)":"Akka.Util.TickTimeTokenBucket.yml","Akka.Util.TickTimeTokenBucket.CurrentTime":"Akka.Util.TickTimeTokenBucket.yml","Akka.Util.Vector":"Akka.Util.Vector.yml","Akka.Util.Vector.Fill``1(System.Int32)":"Akka.Util.Vector.yml","Akka.Util.WildcardTree`1":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.#ctor":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.#ctor(`0,System.Collections.Generic.IDictionary{System.String,Akka.Util.WildcardTree{`0}})":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Data":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Children":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Insert(System.Collections.Generic.IEnumerator{System.String},`0)":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Find(System.Collections.Generic.IEnumerator{System.String})":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Equals(System.Object)":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.GetHashCode":"Akka.Util.WildcardTree-1.yml","Akka.Util.WildcardTree`1.Empty":"Akka.Util.WildcardTree-1.yml","Akka.Util.Base64Encoding":"Akka.Util.Base64Encoding.yml","Akka.Util.Base64Encoding.Base64Chars":"Akka.Util.Base64Encoding.yml","Akka.Util.Base64Encoding.Base64Encode(System.Int64)":"Akka.Util.Base64Encoding.yml","Akka.Util.Base64Encoding.Base64Encode(System.String)":"Akka.Util.Base64Encoding.yml","Akka.Util.StringFormat":"Akka.Util.StringFormat.yml","Akka.Util.StringFormat.SafeJoin(System.String,System.Object[])":"Akka.Util.StringFormat.yml","Akka.Util.WildcardMatch":"Akka.Util.WildcardMatch.yml","Akka.Util.WildcardMatch.Like(System.String,System.String,System.Boolean)":"Akka.Util.WildcardMatch.yml","Akka.Util.Switch":"Akka.Util.Switch.yml","Akka.Util.Switch.#ctor(System.Boolean)":"Akka.Util.Switch.yml","Akka.Util.Switch.TranscendFrom(System.Boolean,System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.SwitchOff(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.SwitchOn(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.SwitchOff":"Akka.Util.Switch.yml","Akka.Util.Switch.SwitchOn":"Akka.Util.Switch.yml","Akka.Util.Switch.IfOn(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.IfOff(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.WhileOn(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.WhileOff(System.Action)":"Akka.Util.Switch.yml","Akka.Util.Switch.IsOn":"Akka.Util.Switch.yml","Akka.Util.Switch.IsOff":"Akka.Util.Switch.yml","Akka.Util.Switch.Locked(System.Action)":"Akka.Util.Switch.yml","Akka.Util.TypeExtensions":"Akka.Util.TypeExtensions.yml","Akka.Util.TypeExtensions.Implements``1(System.Type)":"Akka.Util.TypeExtensions.yml","Akka.Util.TypeExtensions.Implements(System.Type,System.Type)":"Akka.Util.TypeExtensions.yml","Akka.Util.TypeExtensions.TypeQualifiedName(System.Type)":"Akka.Util.TypeExtensions.yml","Akka.Util.Internal":"Akka.Util.Internal.yml","Akka.Util.Internal.IAtomicState":"Akka.Util.Internal.IAtomicState.yml","Akka.Util.Internal.IAtomicState.AddListener(System.Action)":"Akka.Util.Internal.IAtomicState.yml","Akka.Util.Internal.IAtomicState.HasListeners":"Akka.Util.Internal.IAtomicState.yml","Akka.Util.Internal.IAtomicState.Invoke``1(System.Func{System.Threading.Tasks.Task{``0}})":"Akka.Util.Internal.IAtomicState.yml","Akka.Util.Internal.IAtomicState.Enter":"Akka.Util.Internal.IAtomicState.yml","Akka.Util.Internal.DictionaryExtensions":"Akka.Util.Internal.DictionaryExtensions.yml","Akka.Util.Internal.DictionaryExtensions.Put``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)":"Akka.Util.Internal.DictionaryExtensions.yml","Akka.Util.Internal.DictionaryExtensions.TryAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)":"Akka.Util.Internal.DictionaryExtensions.yml","Akka.Util.Internal.InterlockedSpin":"Akka.Util.Internal.InterlockedSpin.yml","Akka.Util.Internal.InterlockedSpin.Swap``1(``0@,System.Func{``0,``0})":"Akka.Util.Internal.InterlockedSpin.yml","Akka.Util.Internal.InterlockedSpin.ConditionallySwap``2(``0@,System.Func{``0,System.Tuple{System.Boolean,``0,``1}})":"Akka.Util.Internal.InterlockedSpin.yml","Akka.Util.Internal.StringBuilderExtensions":"Akka.Util.Internal.StringBuilderExtensions.yml","Akka.Util.Internal.StringBuilderExtensions.AppendJoin``1(System.Text.StringBuilder,System.String,System.Collections.Generic.IEnumerable{``0})":"Akka.Util.Internal.StringBuilderExtensions.yml","Akka.Util.Internal.StringBuilderExtensions.AppendJoin``1(System.Text.StringBuilder,System.String,System.Collections.Generic.IEnumerable{``0},System.Action{System.Text.StringBuilder,``0,System.Int32})":"Akka.Util.Internal.StringBuilderExtensions.yml","Akka.Util.Internal.TaskExtensions":"Akka.Util.Internal.TaskExtensions.yml","Akka.Util.Internal.TaskExtensions.CastTask``2(System.Threading.Tasks.Task{``0})":"Akka.Util.Internal.TaskExtensions.yml","Akka.Util.Internal.Extensions":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.AsInstanceOf``1(System.Object)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Drop``1(System.Collections.Generic.IEnumerable{``0},System.Int32)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Head``1(System.Collections.Generic.IEnumerable{``0})":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.AlternateSelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}},System.Func{``0,System.Collections.Generic.IEnumerable{``1}})":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.SplitDottedPathHonouringQuotes(System.String)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Join(System.Collections.Generic.IEnumerable{System.String},System.String)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.BetweenDoubleQuotes(System.String)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.AddOrSet``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.GetOrElse``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.GetOrElse``1(``0,``0)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.AddAndReturn``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Max(System.TimeSpan,System.TimeSpan)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Min(System.TimeSpan,System.TimeSpan)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.Concat``1(System.Collections.Generic.IEnumerable{``0},``0)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.ForEach``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.Extensions.TakeRight``1(System.Collections.Generic.IEnumerable{``0},System.Int32)":"Akka.Util.Internal.Extensions.yml","Akka.Util.Internal.AtomicCounter":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.#ctor(System.Int32)":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.#ctor":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.Current":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.Next":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.Decrement":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.GetAndIncrement":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.IncrementAndGet":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.GetAndDecrement":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.DecrementAndGet":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.GetAndAdd(System.Int32)":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.AddAndGet(System.Int32)":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.Reset":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.GetAndSet(System.Int32)":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounter.CompareAndSet(System.Int32,System.Int32)":"Akka.Util.Internal.AtomicCounter.yml","Akka.Util.Internal.AtomicCounterLong":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.#ctor(System.Int64)":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.#ctor":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.Current":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.Next":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.GetAndIncrement":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.IncrementAndGet":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.DecrementAndGet":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.GetAndAdd(System.Int64)":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.AddAndGet(System.Int64)":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.Reset":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.GetAndSet(System.Int64)":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.CompareAndSet(System.Int64,System.Int64)":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.AtomicCounterLong.ToString":"Akka.Util.Internal.AtomicCounterLong.yml","Akka.Util.Internal.IAtomicCounter`1":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.Current":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.Next":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.GetAndIncrement":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.IncrementAndGet":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.GetAndAdd(`0)":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.AddAndGet(`0)":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.IAtomicCounter`1.Reset":"Akka.Util.Internal.IAtomicCounter-1.yml","Akka.Util.Internal.Collections":"Akka.Util.Internal.Collections.yml","Akka.Util.Internal.Collections.EnumeratorExtensions":"Akka.Util.Internal.Collections.EnumeratorExtensions.yml","Akka.Util.Internal.Collections.EnumeratorExtensions.Iterator``1(System.Collections.Generic.IEnumerable{``0})":"Akka.Util.Internal.Collections.EnumeratorExtensions.yml","Akka.Util.Internal.Collections.Iterator`1":"Akka.Util.Internal.Collections.Iterator-1.yml","Akka.Util.Internal.Collections.Iterator`1.#ctor(System.Collections.Generic.IEnumerable{`0})":"Akka.Util.Internal.Collections.Iterator-1.yml","Akka.Util.Internal.Collections.Iterator`1.Next":"Akka.Util.Internal.Collections.Iterator-1.yml","Akka.Util.Internal.Collections.Iterator`1.IsEmpty":"Akka.Util.Internal.Collections.Iterator-1.yml","Akka.Util.Internal.Collections.Iterator`1.ToVector":"Akka.Util.Internal.Collections.Iterator-1.yml","Akka.Util.Internal.Collections.IBinaryTreeNode`2":"Akka.Util.Internal.Collections.IBinaryTreeNode-2.yml","Akka.Util.Internal.Collections.IBinaryTreeNode`2.Left":"Akka.Util.Internal.Collections.IBinaryTreeNode-2.yml","Akka.Util.Internal.Collections.IBinaryTreeNode`2.Right":"Akka.Util.Internal.Collections.IBinaryTreeNode-2.yml","Akka.Util.Internal.Collections.IKeyValuePair`2":"Akka.Util.Internal.Collections.IKeyValuePair-2.yml","Akka.Util.Internal.Collections.IKeyValuePair`2.Key":"Akka.Util.Internal.Collections.IKeyValuePair-2.yml","Akka.Util.Internal.Collections.IKeyValuePair`2.Value":"Akka.Util.Internal.Collections.IKeyValuePair-2.yml","Akka.Util.Reflection":"Akka.Util.Reflection.yml","Akka.Util.Reflection.TypeCache":"Akka.Util.Reflection.TypeCache.yml","Akka.Util.Reflection.TypeCache.GetType(System.String)":"Akka.Util.Reflection.TypeCache.yml","Akka.Util.Reflection.ExpressionExtensions":"Akka.Util.Reflection.ExpressionExtensions.yml","Akka.Util.Reflection.ExpressionExtensions.GetArguments(System.Linq.Expressions.NewExpression)":"Akka.Util.Reflection.ExpressionExtensions.yml","Akka.Tools.MatchHandler":"Akka.Tools.MatchHandler.yml","Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture`1":"Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture`1.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture`1.Handle(`0)":"Akka.Tools.MatchHandler.IPartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`1":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`1.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`1.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-1.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`2":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-2.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`2.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-2.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`2.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-2.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`3":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-3.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`3.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-3.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`3.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-3.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`4":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-4.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`4.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-4.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`4.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-4.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`5":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-5.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`5.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-5.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`5.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-5.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`6":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-6.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`6.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-6.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`6.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-6.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`7":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-7.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`7.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-7.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`7.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-7.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`8":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-8.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`8.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-8.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`8.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-8.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`9":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-9.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`9.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-9.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`9.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-9.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`10":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-10.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`10.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-10.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`10.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-10.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`11":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-11.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`11.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-11.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`11.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-11.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`12":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-12.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`12.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-12.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`12.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-12.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`13":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-13.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`13.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-13.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`13.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-13.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`14":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-14.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`14.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-14.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`14.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-14.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`15":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-15.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`15.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-15.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`15.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-15.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`16":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-16.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`16.Initialize(System.Delegate,System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-16.yml","Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture`16.Handle(`0)":"Akka.Tools.MatchHandler.PartialHandlerArgumentsCapture-16.yml","Akka.Tools.MatchHandler.Argument":"Akka.Tools.MatchHandler.Argument.yml","Akka.Tools.MatchHandler.Argument.#ctor(Akka.Tools.MatchHandler.PredicateAndHandler,System.Object,System.Boolean)":"Akka.Tools.MatchHandler.Argument.yml","Akka.Tools.MatchHandler.Argument.PredicateAndHandler":"Akka.Tools.MatchHandler.Argument.yml","Akka.Tools.MatchHandler.Argument.Value":"Akka.Tools.MatchHandler.Argument.yml","Akka.Tools.MatchHandler.Argument.ValueIsActionOrFunc":"Akka.Tools.MatchHandler.Argument.yml","Akka.Tools.MatchHandler.CachedMatchCompiler`1":"Akka.Tools.MatchHandler.CachedMatchCompiler-1.yml","Akka.Tools.MatchHandler.CachedMatchCompiler`1.Instance":"Akka.Tools.MatchHandler.CachedMatchCompiler-1.yml","Akka.Tools.MatchHandler.CachedMatchCompiler`1.#ctor(Akka.Tools.MatchHandler.IMatchExpressionBuilder,Akka.Tools.MatchHandler.IPartialActionBuilder,Akka.Tools.MatchHandler.ILambdaExpressionCompiler)":"Akka.Tools.MatchHandler.CachedMatchCompiler-1.yml","Akka.Tools.MatchHandler.CachedMatchCompiler`1.Compile(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler},System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument},Akka.Tools.MatchHandler.MatchBuilderSignature)":"Akka.Tools.MatchHandler.CachedMatchCompiler-1.yml","Akka.Tools.MatchHandler.CachedMatchCompiler`1.CompileToMethod(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler},System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument},Akka.Tools.MatchHandler.MatchBuilderSignature,System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.MethodAttributes)":"Akka.Tools.MatchHandler.CachedMatchCompiler-1.yml","Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments":"Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.yml","Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.#ctor(System.Delegate,System.Object[])":"Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.yml","Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.CompiledDelegate":"Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.yml","Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.DelegateArguments":"Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments.yml","Akka.Tools.MatchHandler.ILambdaExpressionCompiler":"Akka.Tools.MatchHandler.ILambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.ILambdaExpressionCompiler.Compile(System.Linq.Expressions.LambdaExpression)":"Akka.Tools.MatchHandler.ILambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.ILambdaExpressionCompiler.CompileToMethod(System.Linq.Expressions.LambdaExpression,System.Reflection.Emit.MethodBuilder)":"Akka.Tools.MatchHandler.ILambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.IMatchExpressionBuilder":"Akka.Tools.MatchHandler.IMatchExpressionBuilder.yml","Akka.Tools.MatchHandler.IMatchExpressionBuilder.BuildLambdaExpression(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler})":"Akka.Tools.MatchHandler.IMatchExpressionBuilder.yml","Akka.Tools.MatchHandler.IMatchExpressionBuilder.CreateArgumentValuesArray(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument})":"Akka.Tools.MatchHandler.IMatchExpressionBuilder.yml","Akka.Tools.MatchHandler.IPartialActionBuilder":"Akka.Tools.MatchHandler.IPartialActionBuilder.yml","Akka.Tools.MatchHandler.IPartialActionBuilder.Build``1(Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments)":"Akka.Tools.MatchHandler.IPartialActionBuilder.yml","Akka.Tools.MatchHandler.MatchExpressionBuilderResult":"Akka.Tools.MatchHandler.MatchExpressionBuilderResult.yml","Akka.Tools.MatchHandler.MatchExpressionBuilderResult.#ctor(System.Linq.Expressions.LambdaExpression,System.Object[])":"Akka.Tools.MatchHandler.MatchExpressionBuilderResult.yml","Akka.Tools.MatchHandler.MatchExpressionBuilderResult.LambdaExpression":"Akka.Tools.MatchHandler.MatchExpressionBuilderResult.yml","Akka.Tools.MatchHandler.MatchExpressionBuilderResult.Arguments":"Akka.Tools.MatchHandler.MatchExpressionBuilderResult.yml","Akka.Tools.MatchHandler.MatchExpressionBuilder`1":"Akka.Tools.MatchHandler.MatchExpressionBuilder-1.yml","Akka.Tools.MatchHandler.MatchExpressionBuilder`1.BuildLambdaExpression(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler})":"Akka.Tools.MatchHandler.MatchExpressionBuilder-1.yml","Akka.Tools.MatchHandler.MatchExpressionBuilder`1.CreateArgumentValuesArray(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument})":"Akka.Tools.MatchHandler.MatchExpressionBuilder-1.yml","Akka.Tools.MatchHandler.PartialActionBuilder":"Akka.Tools.MatchHandler.PartialActionBuilder.yml","Akka.Tools.MatchHandler.PartialActionBuilder.MaxNumberOfArguments":"Akka.Tools.MatchHandler.PartialActionBuilder.yml","Akka.Tools.MatchHandler.PartialActionBuilder.Build``1(Akka.Tools.MatchHandler.CompiledMatchHandlerWithArguments)":"Akka.Tools.MatchHandler.PartialActionBuilder.yml","Akka.Tools.MatchHandler.HandlerKind":"Akka.Tools.MatchHandler.HandlerKind.yml","Akka.Tools.MatchHandler.HandlerKind.Action":"Akka.Tools.MatchHandler.HandlerKind.yml","Akka.Tools.MatchHandler.HandlerKind.ActionWithPredicate":"Akka.Tools.MatchHandler.HandlerKind.yml","Akka.Tools.MatchHandler.HandlerKind.Func":"Akka.Tools.MatchHandler.HandlerKind.yml","Akka.Tools.MatchHandler.IMatchCompiler`1":"Akka.Tools.MatchHandler.IMatchCompiler-1.yml","Akka.Tools.MatchHandler.IMatchCompiler`1.Compile(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler},System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument},Akka.Tools.MatchHandler.MatchBuilderSignature)":"Akka.Tools.MatchHandler.IMatchCompiler-1.yml","Akka.Tools.MatchHandler.IMatchCompiler`1.CompileToMethod(System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.TypeHandler},System.Collections.Generic.IReadOnlyList{Akka.Tools.MatchHandler.Argument},Akka.Tools.MatchHandler.MatchBuilderSignature,System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.MethodAttributes)":"Akka.Tools.MatchHandler.IMatchCompiler-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.#ctor(Akka.Tools.MatchHandler.IMatchCompiler{`0})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.Match``1(System.Action{``0},System.Predicate{``0})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.Match(System.Type,System.Action{`0},System.Predicate{`0})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.Match``1(System.Func{``0,System.Boolean})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.Match(System.Type,System.Func{`0,System.Boolean})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.MatchAny(System.Action{`0})":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.Build":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder`1.BuildToMethod(System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.MethodAttributes)":"Akka.Tools.MatchHandler.MatchBuilder-1.yml","Akka.Tools.MatchHandler.MatchBuilder":"Akka.Tools.MatchHandler.MatchBuilder.yml","Akka.Tools.MatchHandler.MatchBuilder.#ctor(Akka.Tools.MatchHandler.IMatchCompiler{System.Object})":"Akka.Tools.MatchHandler.MatchBuilder.yml","Akka.Tools.MatchHandler.MatchBuilderSignature":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.MatchBuilderSignature.#ctor(System.Collections.Generic.IReadOnlyList{System.Object})":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.MatchBuilderSignature.Equals(Akka.Tools.MatchHandler.MatchBuilderSignature)":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.MatchBuilderSignature.Equals(System.Object)":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.MatchBuilderSignature.GetHashCode":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.MatchBuilderSignature.ToString":"Akka.Tools.MatchHandler.MatchBuilderSignature.yml","Akka.Tools.MatchHandler.PartialAction`1":"Akka.Tools.MatchHandler.PartialAction-1.yml","Akka.Tools.MatchHandler.PredicateAndHandler":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.HandlerKind":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.Arguments":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.HandlerFirstArgumentShouldBeBaseType":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.ActionOrFuncExpression":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.PredicateExpression":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.CreateAction(System.Object,System.Object,System.Boolean)":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.PredicateAndHandler.CreateFunc(System.Object,System.Boolean)":"Akka.Tools.MatchHandler.PredicateAndHandler.yml","Akka.Tools.MatchHandler.LambdaExpressionCompiler":"Akka.Tools.MatchHandler.LambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.LambdaExpressionCompiler.Compile(System.Linq.Expressions.LambdaExpression)":"Akka.Tools.MatchHandler.LambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.LambdaExpressionCompiler.CompileToMethod(System.Linq.Expressions.LambdaExpression,System.Reflection.Emit.MethodBuilder)":"Akka.Tools.MatchHandler.LambdaExpressionCompiler.yml","Akka.Tools.MatchHandler.TypeHandler":"Akka.Tools.MatchHandler.TypeHandler.yml","Akka.Tools.MatchHandler.TypeHandler.#ctor(System.Type)":"Akka.Tools.MatchHandler.TypeHandler.yml","Akka.Tools.MatchHandler.TypeHandler.HandlesType":"Akka.Tools.MatchHandler.TypeHandler.yml","Akka.Tools.MatchHandler.TypeHandler.Handlers":"Akka.Tools.MatchHandler.TypeHandler.yml","Akka.Tools.MatchHandler.TypeHandler.GetArguments":"Akka.Tools.MatchHandler.TypeHandler.yml"}
\ No newline at end of file
diff --git a/docs/api/index.md b/docs/api/index.md
index 78dc9c00575..bd19f09a59c 100644
--- a/docs/api/index.md
+++ b/docs/api/index.md
@@ -1,2 +1 @@
-# PLACEHOLDER
-TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*!
+## Akka.NET API Documentation
\ No newline at end of file
diff --git a/docs/articles/actors/dependency-injection.md b/docs/articles/actors/dependency-injection.md
index 3c4844e7897..7d3f707855c 100644
--- a/docs/articles/actors/dependency-injection.md
+++ b/docs/articles/actors/dependency-injection.md
@@ -48,7 +48,7 @@ protected override void PreStart()
> [!INFO]
> There is currently still an extension method available for the actor Context. `Context.DI().ActorOf<>`. However this has been officially **deprecated** and will be removed in future versions.
-##Notes
+## Notes
> [!WARNING]
> You might be tempted at times to use an `IndirectActorProducer`
diff --git a/docs/articles/actors/finite-state-machine.md b/docs/articles/actors/finite-state-machine.md
index 5115e0c2b80..0a605971e23 100644
--- a/docs/articles/actors/finite-state-machine.md
+++ b/docs/articles/actors/finite-state-machine.md
@@ -16,15 +16,15 @@ using Akka.Event;
The contract of our `Buncher` actor is that it accepts or produces the following messages:
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/FiniteStateMachine.Messages.cs#L11-L43)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/FiniteStateMachine.Messages.cs#L11-L43)]
`SetTarget` is needed for starting it up, setting the destination for the Batches to be passed on; `Queue` will add to the internal queue while `Flush` will mark the end of a burst.
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/FiniteStateMachine.Messages.cs#L46-L78)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/FiniteStateMachine.Messages.cs#L46-L78)]
The actor can be in two states: no message queued (aka `Idle`) or some message queued (aka `Active`). It will stay in the active state as long as messages keep arriving and no flush is requested. The internal state data of the actor is made up of the target actor reference to send the batches to and the actual queue of messages.
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=8-35,64-67)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=8-35,64-67)]
The basic strategy is to declare the actor, inherit from `FSM` class and specifying the possible states and data values as type parameters. Within the body of the actor a DSL is used for declaring the state machine:
@@ -34,19 +34,19 @@ The basic strategy is to declare the actor, inherit from `FSM` class and specify
In this case, we start out in the `Idle` and `Uninitialized` state, where only the `SetTarget()` message is handled; stay prepares to end this event’s processing for not leaving the current state, while the using modifier makes the `FSM` replace the internal state (which is `Uninitialized` at this point) with a fresh `Todo()` object containing the target actor reference. The `Active` state has a state timeout declared, which means that if no message is received for 1 second, a `FSM.StateTimeout` message will be generated. This has the same effect as receiving the `Flush` command in this case, namely to transition back into the Idle state and resetting the internal queue to the empty vector. But how do messages get queued? Since this shall work identically in both states, we make use of the fact that any event which is not handled by the `When()` block is passed to the `WhenUnhandled()` block:
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=37-48)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=37-48)]
The first case handled here is adding `Queue()` requests to the internal queue and going to the `Active` state (this does the obvious thing of staying in the `Active` state if already there), but only if the `FSM` data are not `Uninitialized` when the `Queue()` event is received. Otherwise—and in all other non-handled cases—the second case just logs a warning and does not change the internal state.
The only missing piece is where the `Batches` are actually sent to the target, for which we use the `OnTransition` mechanism: you can declare multiple such blocks and all of them will be tried for matching behavior in case a state transition occurs (i.e. only when the state actually changes).
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=50-63)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=50-63)]
The transition callback is a function which takes as input a pair of states—the current and the next state. The `FSM` class includes a convenience extractor for these in form of an arrow operator, which conveniently reminds you of the direction of the state change which is being matched. During the state change, the old state data is available via `StateData` as shown, and the new state data would be available as `NextStateData`.
To verify that this buncher actually works, it is quite easy to write a test using the `Testing Actor Systems`.
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/ExampleFSMActorTests.cs?range=9-33)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/ExampleFSMActorTests.cs?range=9-33)]
## Reference
@@ -86,7 +86,7 @@ If the `timeout` parameter is given, then all transitions into this state, inclu
The `stateFunction` argument is a `delegate State StateFunction(Event fsmEvent)`.
-[!code-csharp[Main](../../examples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=16-35)]
+[!code-csharp[Main](../../examples/DocsExamples/Actors/FiniteStateMachine/ExampleFSMActor.cs?range=16-35)]
### Defining the Initial State
Each `FSM` needs a starting point, which is declared using
diff --git a/docs/articles/actors/mailboxes.md b/docs/articles/actors/mailboxes.md
index b76f27185ac..3e4d826e712 100644
--- a/docs/articles/actors/mailboxes.md
+++ b/docs/articles/actors/mailboxes.md
@@ -58,7 +58,7 @@ my-custom-mailbox {
The unbounded mailbox priority mailbox is blocking mailbox that allows message prioritization, so that you can choose the order the actor should process messages that are already in the mailbox.
- In order to use this mailbox, you need to extend the `UnboundedPriorityMailbox` class and provide an ordering logic. The value returned by the `PriorityGenerator` method will be used to order the message in the mailbox. Lower values will be delivered first. Messages ordered by the same number will remain in delivery order.
+ In order to use this mailbox, you need to extend the `UnboundedPriorityMailbox` class and provide an ordering logic. The value returned by the `PriorityGenerator` method will be used to order the message in the mailbox. Lower values will be delivered first. Delivery order for messages of equal priority is undefined.
```cs
public class IssueTrackerMailbox : UnboundedPriorityMailbox
@@ -82,3 +82,6 @@ my-custom-mailbox {
```
Once the class is implemented, you should set it up using the [instructions above](#using-a-mailbox).
+##### Special note
+While we have updated the UnboundedPriorityMailbox to support Stashing. We don't recommend using it.
+Once you stash messages, they are no longer part of the prioritization process that your PriorityMailbox uses. Once you unstash all messages, they are fed to the Actor, in the order of stashing.
diff --git a/docs/articles/actors/receive-actor-api.md b/docs/articles/actors/receive-actor-api.md
index 6ec1d58c57b..374b911ec04 100644
--- a/docs/articles/actors/receive-actor-api.md
+++ b/docs/articles/actors/receive-actor-api.md
@@ -151,7 +151,7 @@ This strategy is typically declared inside the actor in order to have access to
* parent supervisor
* supervised children
* lifecycle monitoring
- * hotswap behavior stack as described in [HotSwap](#become/unbecome)
+ * hotswap behavior stack as described in [HotSwap](#becomeunbecome)
The remaining visible methods are user-overridable life-cycle hooks which are described in the following:
diff --git a/docs/articles/actors/testing-actor-systems.md b/docs/articles/actors/testing-actor-systems.md
index 25aea536058..33e6a68c1b9 100644
--- a/docs/articles/actors/testing-actor-systems.md
+++ b/docs/articles/actors/testing-actor-systems.md
@@ -3,132 +3,29 @@ uid: testing-actor-systems
title: Testing Actor Systems
---
+
# Testing Actor Systems
-As with any piece of software, automated tests are a very important part of the development cycle. The actor model presents a different view on how units of code are delimited and how they interact, which has an influence on how to perform tests.
-Akka.Net comes with a dedicated module `Akka.TestKit` for supporting tests at different levels, which fall into two clearly distinct categories:
-- Testing isolated pieces of code without involving the actor model, meaning without multiple threads; this implies completely deterministic behavior concerning the ordering of events and no concurrency concerns and will be called **Unit Testing** in the following.
-- Testing (multiple) encapsulated actors including multi-threaded scheduling; this implies non-deterministic order of events but shielding from concurrency concerns by the actor model and will be called **Integration Testing** in the following.
+As with any piece of software, automated tests are a very important part of the development cycle. The actor model presents a different view on how units of code are delimited and how they interact, which has an influence on how to perform tests.
-There are of course variations on the granularity of tests in both categories, where unit testing reaches down to white-box tests and integration testing can encompass functional tests of complete actor networks. The important distinction lies in whether concurrency concerns are part of the test or not. The tools offered are described in detail in the following sections.
+Akka.Net comes with a dedicated module `Akka.TestKit` for supporting tests at different levels.
-## Synchronous Unit Testing with TestActorRef
+## Asynchronous Testing: TestKit
-Testing the business logic inside `Actor` classes can be divided into two parts: first, each atomic operation must work in isolation, then sequences of incoming events must be processed correctly, even in the presence of some possible variability in the ordering of events. The former is the primary use case for single-threaded unit testing, while the latter can only be verified in integration tests.
+Testkit allows you to test your actors in a controlled but realistic environment. The definition of the environment depends of course very much on the problem at hand and the level at which you intend to test, ranging from simple checks to full system tests.
-Normally, the `IActorRef` shields the underlying `Actor` instance from the outside, the only communications channel is the actor's mailbox. This restriction is an impediment to unit testing, which led to the inception of the `TestActorRef`. This special type of reference is designed specifically for test purposes and allows access to the actor in two ways: either by obtaining a reference to the underlying actor instance, or by invoking or querying the actor's behaviour (receive). Each one warrants its own section below.
-
-> [!NOTE]
-> It is highly recommended to stick to traditional behavioural testing (using messaging to ask the `Actor` to reply with the state you want to run assertions against), instead of using `TestActorRef` whenever possible.
-
-### Obtaining a Reference to an Actor
-Having access to the actual `Actor` object allows application of all traditional unit testing techniques on the contained methods. Obtaining a reference is done like this:
-```csharp
-public class MyActor : UntypedActor
-{
- protected override void OnReceive(object message)
- {
- if (message.Equals("say42"))
- {
- Sender.Tell(42, Self);
- }
- else if (message is Exception)
- {
- throw (Exception)message;
- }
- }
-
- public bool TestMe
- {
- get { return true; }
- }
-}
-
-[Fact]
-public void DemonstrateTestActorRef()
-{
- var props = Props.Create();
- var myTestActor = new TestActorRef(Sys, props, null, "testA");
- MyActor myActor = myTestActor.UnderlyingActor;
- Assert.True(myActor.TestMe);
-}
-```
-Since `TestActorRef` is generic in the actor type it returns the underlying actor with its proper static type. From this point on you may bring any unit testing tool to bear on your actor as usual.
-
-### Testing the Actor's Behavior
-When the dispatcher invokes the processing behavior of an actor on a message, it actually calls apply on the current behavior registered for the actor. This starts out with the return value of the declared receive method, but it may also be changed using become and unbecome in response to external messages. All of this contributes to the overall actor behavior and it does not lend itself to easy testing on the `Actor` itself. Therefore the TestActorRef offers a different mode of operation to complement the `Actor` testing: it supports all operations also valid on normal `IActorRef`. Messages sent to the actor are processed synchronously on the current thread and answers may be sent back as usual. This trick is made possible by the `CallingThreadDispatcher` described below; this dispatcher is set implicitly for any actor instantiated into a `TestActorRef`.
-```csharp
-var props = Props.Create();
-var myTestActor = new TestActorRef(Sys, props, null, "testB");
-Task future = myTestActor.Ask("say42", TimeSpan.FromMilliseconds(3000));
-Assert.True(future.IsCompleted);
-Assert.Equal(42, await future);
-```
-As the `TestActorRef` is a subclass of `LocalActorRef` with a few special extras, also aspects like supervision and restarting work properly, but beware that execution is only strictly synchronous as long as all actors involved use the `CallingThreadDispatcher`. As soon as you add elements which include more sophisticated scheduling you leave the realm of unit testing as you then need to think about asynchronicity again (in most cases the problem will be to wait until the desired effect had a chance to happen).
-
-One more special aspect which is overridden for single-threaded tests is the `ReceiveTimeout`, as including that would entail asynchronous queuing of `ReceiveTimeout` messages, violating the synchronous contract.
-
-### The Way In-Between: Expecting Exceptions
-If you want to test the actor behavior, including hotswapping, but without involving a dispatcher and without having the `TestActorRef` swallow any thrown exceptions, then there is another mode available for you: just use the receive method on `TestActorRef`, which will be forwarded to the underlying actor:
-```csharp
-var props = Props.Create();
-var myTestActor = new TestActorRef(Sys, props, null, "testB");
-try
-{
- myTestActor.Receive(new Exception("expected"));
-}
-catch (Exception e)
-{
- Assert.Equal("expected", e.Message);
-}
-```
-
-### Use Cases
-You may of course mix and match both modi operandi of `TestActorRef` as suits your test needs:
-
-- one common use case is setting up the actor into a specific internal state before sending the test message
-- another is to verify correct internal state transitions after having sent the test message
-
-## Asynchronous Integration Testing with TestKit
-When you are reasonably sure that your actor's business logic is correct, the next step is verifying that it works correctly within its intended environment (if the individual actors are simple enough, possibly because they use the `FSM` module, this might also be the first step). The definition of the environment depends of course very much on the problem at hand and the level at which you intend to test, ranging for functional/integration tests to full system tests. The minimal setup consists of the test procedure, which provides the desired stimuli, the actor under test, and an actor receiving replies. Bigger systems replace the actor under test with a network of actors, apply stimuli at varying injection points and arrange results to be sent from different emission points, but the basic principle stays the same in that a single procedure drives the test.
+The minimal setup consists of the test procedure, which provides the desired stimuli, the actor under test, and an actor receiving replies. Bigger systems replace the actor under test with a network of actors, apply stimuli at varying injection points and arrange results to be sent from different emission points, but the basic principle stays the same in that a single procedure drives the test.
The `TestKit` class contains a collection of tools which makes this common task easy.
-```csharp
-public class MyActor : UntypedActor
-{
- protected override void OnReceive(object message)
- {
- if (message.Equals("hello world"))
- {
- Sender.Tell(message, Self);
- }
- else
- {
- Unhandled(message);
- }
- }
-
- public bool TestMe
- {
- get { return true; }
- }
-}
+[!code-csharp[IntroSample](../../examples/DocsExamples/Testkit/TestKitSampleTest.cs?range=9-64)]
-[Fact]
-public void EndBackMessagesUnchanged()
-{
- var echo = Sys.ActorOf(Props.Create());
- echo.Tell("hello world");
- ExpectMsg("hello world");
-}
-```
-The `TestKit` contains an actor named `MyActor` which is the entry point for messages to be examined with the various `ExpectMsg...` assertions detailed below. When mixing in the class `ImplicitSender` this test actor is implicitly used as sender reference when dispatching messages from the test procedure. The `MyActor` may also be passed to other actors as usual, usually subscribing it as notification listener. There is a whole set of examination methods, e.g. receiving all consecutive messages matching certain criteria, receiving a whole sequence of fixed messages or classes, receiving nothing for some time, etc.
+The `TestKit` contains an actor named `TestActor` which is the entry point for messages to be examined with the various `ExpectMsg..` assertions detailed below. The `TestActor` may also be passed to other actors as usual, usually subscribing it as notification listener. There is a while set of examination methods, e.g. receiving all consecutive messages matching certain criteria, receiving a while sequence of fixed messages or classes, receiving nothing for some time, etc.
-The `ActorSystem` passed in to the constructor of `TestKit` is accessible via the system member. Remember to shut down the actor system after the test is finished (also in case of failure) so that all actors—including the test actor—are stopped.
+You can provide your own ActorSystem instance, or Config by overriding the TestKit constructor. The ActorSystem used by the TestKit is accessible via the `Sys` member.
-### Built-In Assertions
+## Built-In Assertions
The above mentioned `ExpectMsg` is not the only method for formulating assertions concerning received messages. Here is the full list:
@@ -153,18 +50,161 @@ Receive one message of the specified type from the test actor and assert that it
- `object FishForMessage(Predicate