Akka.Tests.Routing.RoutingSpec.GetConfig C# (CSharp) Метод

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

private static GetConfig ( ) : string
Результат string
        private static string GetConfig()
        {
            return @"
    akka.actor.serialize-messages = off
#    akka.actor.debug {  
#          receive = on 
#          autoreceive = on
#          lifecycle = on
#          event-stream = on
#          unhandled = on
#        }
    akka.stdout-loglevel = DEBUG
    akka.actor.deployment {
      /router1 {
        router = round-robin-pool
        nr-of-instances = 3
      }
      /router2 {
        router = round-robin-pool
        nr-of-instances = 3
      }
      /router3 {
        router = round-robin-pool
        nr-of-instances = 0
      }
    }
    ";
        }