func newPholcus() *Node { return &Node{ RunMode: cache.Task.RunMode, Port: ":" + strconv.Itoa(cache.Task.Port), Master: cache.Task.Master, Teleport: teleport.New(), TaskJar: task.NewTaskJar(), Spiders: spiderqueue.New(), Crawls: crawlpool.New(), Status: status.RUN, } }
func NewNode(mode int, port int, master string) *Node { return &Node{ RunMode: mode, Port: ":" + strconv.Itoa(port), Master: master, Teleport: teleport.New(), TaskJar: task.NewTaskJar(), Spiders: spiderqueue.New(), Crawls: crawlpool.New(), Status: status.RUN, } }