Akka.Dispatch.Mailboxes.CreateMailbox C# (CSharp) Méthode

CreateMailbox() public méthode

public CreateMailbox ( Props props, Config dispatcherConfig ) : Mailbox
props Props
dispatcherConfig Akka.Configuration.Config
Résultat Mailbox
        public Mailbox CreateMailbox(Props props, Config dispatcherConfig)
        {
            var type = GetMailboxType(props, dispatcherConfig);
            var instance = (Mailbox)Activator.CreateInstance(type);
            return instance;
        }