Package thredds.catalog
Interface CatalogSetCallback
-
public interface CatalogSetCallbackAllows 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 voidfailed()Called if the catalog reading failsvoidsetCatalog(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
-
-