Exemplo n.º 1
0
        public PID SpawnPrefix(Props props, string prefix)
        {
            var name = prefix + ProcessRegistry.Instance.NextId();

            return(SpawnNamed(props, name));
        }
Exemplo n.º 2
0
 public static PID SpawnNamed(Props props, string name)
 {
     return(props.Spawn(name, null));
 }
Exemplo n.º 3
0
        public PID Spawn(Props props)
        {
            var id = ProcessRegistry.Instance.NextId();

            return(SpawnNamed(props, id));
        }
Exemplo n.º 4
0
        public static PID Spawn(Props props)
        {
            var name = ProcessRegistry.Instance.NextId();

            return(SpawnNamed(props, name));
        }