Where can I find documentations?
Closed this issue · 1 comments
Hi!
Thanks for the efforts and advance codebase.
I was wondering if there is any documentation that I can look at and get familiar with the way the code works.
I have seen the wiki and have looked at the sample projects. But I'm looking for something that explain the different classes and methods.
For example, for finding the difference between UseQueueDfsScheduler
, UseQueueBfsScheduler
, and UseQueueDistinctBfsScheduler
I had to read the source code and retrieve the comments in the code and use a translator to understand the comment.
Is there an online documentation or any easier way to understand the code?
Thanks again. :)
UseQueueDfsScheduler: deep first search
UseQueueDistinctDfsScheduler: deep first search, ignore same url
UseQueueBfsScheduler: Breath First Search
UseQueueDistinctBfsScheduler: Breath First Search, ignore same url