Closed pstutz closed 11 years ago
I set a higher crawl depth. For some reason the whole thing is run in spite of starting it in interactive mode.
Well, it runs the whole thing because that's how the algorithm is implemented. In the Webpage
class it says:
/** This method gets called by the framework after the vertex has been fully initialized. */
override def afterInitialization(graphEditor: GraphEditor[Any, Any]) {
and in there, the whole downloading etc is done. And apparently that method is called from WorkerImplementation.addVertex
so it could be that it all happens before execute() is even called on the graph?
You're right, I forgot it was implemented this way. Apologies. :(
Works for me. When does it hang for you?