Akka.Tests.Dispatch.MailboxesSpec.GetConfig C# (CSharp) Метод

GetConfig() приватный статический Метод

private static GetConfig ( ) : string
Результат string
        private static string GetConfig()
        {
               return @"
akka.actor.default-dispatcher.throughput = 100  #ensure we process 100 messages per mailbox run
string-prio-mailbox {
    mailbox-type : """ + typeof(TestPriorityMailbox).AssemblyQualifiedName  + @"""
}

int-prio-mailbox {
    mailbox-type : """ + typeof(IntPriorityMailbox).AssemblyQualifiedName + @"""
}
";
        }