public PID SpawnPrefix(Props props, string prefix) { var name = prefix + ProcessRegistry.Instance.NextId(); return(SpawnNamed(props, name)); }
public static PID SpawnNamed(Props props, string name) { return(props.Spawn(name, null)); }
public PID Spawn(Props props) { var id = ProcessRegistry.Instance.NextId(); return(SpawnNamed(props, id)); }
public static PID Spawn(Props props) { var name = ProcessRegistry.Instance.NextId(); return(SpawnNamed(props, name)); }