Uses of Interface
ucar.nc2.util.CancelTask

Packages that use CancelTask
ucar.nc2 Java-NetCDF API, version 2.2. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
ucar.nc2.dt Scientific data types package. 
ucar.nc2.thredds Connects NetCDF-Java to THREDDS Catalogs and Datasets. 
 

Uses of CancelTask in ucar.nc2
 

Methods in ucar.nc2 with parameters of type CancelTask
static NetcdfFile NetcdfFileCache.acquire(java.lang.String location, CancelTask cancelTask)
          Acquire a NetcdfFile, and lock it so no one else can use it.
static NetcdfFile NetcdfFileCache.acquire(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject, NetcdfFileFactory factory)
           
 void IOServiceProvider.open(RandomAccessFile raf, NetcdfFile ncfile, CancelTask cancelTask)
          Open existing file, and populate ncfile with it.
static NetcdfFile NetcdfFile.open(java.lang.String location, CancelTask cancelTask)
          Open an existing file (read only), with option of cancelling.
static NetcdfFile NetcdfFile.open(java.lang.String location, int buffer_size, CancelTask cancelTask)
          Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency.
 NetcdfFile NetcdfFileFactory.open(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Open a NetcdfFile.
static NetcdfFile NetcdfFile.open(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency, with an optional special object for the iosp.
static NetcdfFile NetcdfFile.open(java.lang.String location, java.lang.String className, int bufferSize, CancelTask cancelTask, java.lang.String iospParam)
           
static boolean NCdump.print(NetcdfFile nc, java.io.OutputStream out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          ncdump-like print of netcdf file.
static boolean NCdump.print(NetcdfFile nc, java.lang.String command, java.io.OutputStream out, CancelTask ct)
          ncdump, parsing command string, file already open.
static boolean NCdump.print(java.lang.String fileName, java.io.OutputStream out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          ncdump-like print of netcdf file.
static boolean NCdump.print(java.lang.String command, java.io.OutputStream out, CancelTask ct)
          ncdump that parses a command string.
static void NCdump.printArray(Array array, java.lang.String name, java.io.PrintStream out, CancelTask ct)
          Print the data array.
static java.lang.String NCdump.printVariableData(VariableIF v, CancelTask ct)
          Print all the data of the given Variable.
static java.lang.String NCdump.printVariableDataSection(VariableIF v, java.lang.String sectionSpec, CancelTask ct)
          Print a section the data of the given Variable.
 

Uses of CancelTask in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset with parameters of type CancelTask
static NetcdfDataset NetcdfDatasetCache.acquire(java.lang.String location, CancelTask cancelTask)
          Acquire a NetcdfDataset, and lock it so no one else can use it.
static NetcdfDataset NetcdfDatasetCache.acquire(java.lang.String cacheName, CancelTask cancelTask, NetcdfDatasetFactory factory)
          Same as acquire(), but use a factory to open the dataset.
static NetcdfDataset NetcdfDatasetCache.acquire(java.lang.String cacheName, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject, NetcdfDatasetFactory factory)
          Same as acquire(), but use a factory to open the dataset.
static NetcdfDataset NetcdfDatasetCache.acquireCacheOnly(java.lang.String cacheName, CancelTask cancelTask)
          Try to find a file in the cache.
static NetcdfDataset NetcdfDataset.acquireDataset(java.lang.String location, CancelTask cancelTask)
          Same as openDataset, but file is acquired through the NetcdfFileCache, and its always enhanced.
static NetcdfFile NetcdfDataset.acquireFile(java.lang.String location, CancelTask cancelTask)
          Same as openFile, but file is acquired through the NetcdfFileCache.
static void CoordSysBuilder.addCoordinateSystems(NetcdfDataset ds, CancelTask cancelTask)
          Add Coordinate information to a NetcdfDataset using a registered Convention parsing class.
 void CoordSysBuilderIF.augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
          Make changes to the dataset, like adding new variables, attribuites, etc.
 void CoordSysBuilder.augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
          This is where subclasses make changes to the dataset, like adding new variables, attribuites, etc.
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, boolean enhance, CancelTask cancelTask)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, boolean enhance, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
 NetcdfDataset NetcdfDatasetFactory.openDataset(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Open the NetcdfDataset.
static NetcdfFile NetcdfDataset.openFile(java.lang.String location, CancelTask cancelTask)
          Factory method for opening a NetcdfFile through the netCDF API.
static NetcdfFile NetcdfDataset.openFile(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a NetcdfFile through the netCDF API.
 Array ProxyReader.read(Variable mainv, CancelTask cancelTask)
          Read all the data for a Variable.
 Array ProxyReader.read(Variable mainv, CancelTask cancelTask, java.util.List section)
          Read a section of the data for a Variable and return a memory resident Array.
 

Uses of CancelTask in ucar.nc2.dt
 

Methods in ucar.nc2.dt with parameters of type CancelTask
 java.util.List PointCollection.getData(CancelTask cancel)
          Get all data, allow user to cancel.
 java.util.List PointCollection.getData(LatLonRect boundingBox, CancelTask cancel)
          Get all data within the specified bounding box, allow user to cancel.
 java.util.List PointCollection.getData(LatLonRect boundingBox, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get all data within the specified bounding box and date range, allow user to cancel.
 java.util.List StationCollection.getData(java.util.List stations, CancelTask cancel)
          Get all data for a list of Stations, allow user to cancel.
 java.util.List StationCollection.getData(java.util.List stations, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for a list of Stations within the specified date range, allow user to cancel.
 java.util.List StationCollection.getData(Station s, CancelTask cancel)
          Get all data for this Station, allow user to cancel.
 java.util.List StationCollection.getData(Station s, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for this Station within the specified date range, allow user to cancel.
 java.util.List StationCollection.getStations(CancelTask cancel)
          Get all the Stations in the collection, allow user to cancel.
 java.util.List StationRadarCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
 java.util.List StationCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
static TypedDataset TypedDatasetFactory.open(DataType datatype, NetcdfDataset ncd, CancelTask task, java.lang.StringBuffer errlog)
          Open a dataset as a TypedDataset.
static TypedDataset TypedDatasetFactory.open(DataType datatype, java.lang.String location, CancelTask task, java.lang.StringBuffer errlog)
          Open a dataset as a TypedDataset.
 TypedDataset TypedDatasetFactoryIF.open(NetcdfDataset ncd, CancelTask task, java.lang.StringBuffer errlog)
          Open a NetcdfDataset as a TypedDataset.
 

Uses of CancelTask in ucar.nc2.thredds
 

Methods in ucar.nc2.thredds with parameters of type CancelTask
 java.util.List DqcStationObsDataset.getData(CancelTask cancel)
           
 java.util.List DqcStationObsDataset.getData(Station s, CancelTask cancel)
           
 java.util.ArrayList TDSRadarDatasetCollection.getData(java.lang.String sName, DateSelection dateSelect, CancelTask cancel)
          Getting data for a single radar station, with time range.
 java.util.ArrayList DqcRadarDatasetCollection.getData(java.lang.String sName, DateSelection dateSelect, CancelTask cancel)
          Getting data for a single radar station, with time range.
 java.util.ArrayList TDSRadarDatasetCollection.getDataURIs(java.lang.String sName, DateSelection dateSelect, CancelTask cancel)
          _more_
 java.util.ArrayList DqcRadarDatasetCollection.getDataURIs(java.lang.String sName, DateSelection dateSelect, CancelTask cancel)
          _more_
 java.util.List TDSRadarDatasetCollection.getStations(CancelTask cancel)
          get all radar station within box.
 java.util.List DqcRadarDatasetCollection.getStations(CancelTask cancel)
          get all radar station within box.
 java.util.List TDSRadarDatasetCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          get all radar station within box.
 java.util.List DqcRadarDatasetCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          get all radar station within box.
 NetcdfDataset ThreddsDataFactory.openDataset(InvAccess access, boolean acquire, CancelTask task, java.lang.StringBuffer log)
          Try to open invAccess as a NetcdfDataset.
 NetcdfDataset ThreddsDataFactory.openDataset(InvDataset invDataset, boolean acquire, CancelTask task, java.lang.StringBuffer log)
          Try to open as a NetcdfDataset.
 NetcdfDataset ThreddsDataFactory.openDataset(java.lang.String location, boolean acquire, CancelTask task, java.lang.StringBuffer log)
          Open a NetcdfDataset from a URL location string.
 ThreddsDataFactory.Result ThreddsDataFactory.openDatatype(InvAccess access, CancelTask task)
          Open a TypedDataset from an InvAccess object.
 ThreddsDataFactory.Result ThreddsDataFactory.openDatatype(InvDataset invDataset, CancelTask task)
          Open a TypedDataset from an InvDataset object, deciding on which InvAccess to use.
 ThreddsDataFactory.Result ThreddsDataFactory.openDatatype(java.lang.String location, CancelTask task)
          Open a TypedDataset from a URL location string.