Package thredds.catalog.crawl
Interface CatalogCrawler.Listener
-
- All Known Implementing Classes:
CatalogExtractor
- Enclosing class:
- CatalogCrawler
public static interface CatalogCrawler.Listener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetCatalogRef(InvCatalogRef dd, Object context)Gets called for each catalogRef foundvoidgetDataset(InvDataset dd, Object context)Gets called for each dataset found.
-
-
-
Method Detail
-
getDataset
void getDataset(InvDataset dd, Object context)
Gets called for each dataset found.- Parameters:
dd- the datasetcontext- caller can pass this object in (used for thread safety)
-
getCatalogRef
boolean getCatalogRef(InvCatalogRef dd, Object context)
Gets called for each catalogRef found- Parameters:
dd- the datasetcontext- caller can pass this object in (used for thread safety)- Returns:
- true to process, false to skip
-
-