Package thredds.catalog
Interface CatalogSetCallback
-
public interface CatalogSetCallback
Allows asynchronous reading of a catalog. When the catalog is read, setCatalog() is called, else failed() is called.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
failed()
Called if the catalog reading failsvoid
setCatalog(InvCatalogImpl catalog)
Called when the catalog is done being read.
-
-
-
Method Detail
-
setCatalog
void setCatalog(InvCatalogImpl catalog)
Called when the catalog is done being read.- Parameters:
catalog
- the catalog that was just read in.
-
failed
void failed()
Called if the catalog reading fails
-
-