Interface ReferencesProvider

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ReferencesProvider
Provide references for crawling. You can implement this interface if you need start references to be established dynamically when the crawler starts.
  • Method Summary

    Modifier and Type
    Method
    Description
    Provides an iterator over provided references.
  • Method Details

    • provideReferences

      Iterator<String> provideReferences()
      Provides an iterator over provided references. If you have a limited set that is easier to return as array or list, consider wrapping the return value in ObjectArrayIterator or ObjectArrayListIterator.
      Returns:
      iterator of reference strings