congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IOServiceProvider.syncExtend
Code IndexAdd Tabnine to your IDE (free)

How to use
syncExtend
method
in
ucar.nc2.iosp.IOServiceProvider

Best Java code snippets using ucar.nc2.iosp.IOServiceProvider.syncExtend (Showing top 3 results out of 315)

origin: edu.ucar/netcdf

/**
 * Extend the file if needed, in a way that is compatible with the current metadata, that is,
 * does not invalidate structural metadata held by the application.
 * For example, ok if dimension lengths, data has changed.
 * All previous object references (variables, dimensions, etc) remain valid.
 *
 * @return true if file was extended.
 * @throws IOException if error
 */
public boolean syncExtend() throws IOException {
 //unlocked = false;
 return (spi != null) && spi.syncExtend();
}
origin: edu.ucar/cdm

/**
 * Extend the file if needed, in a way that is compatible with the current metadata, that is,
 * does not invalidate structural metadata held by the application.
 * For example, ok if dimension lengths, data has changed.
 * All previous object references (variables, dimensions, etc) remain valid.
 *
 * @return true if file was extended.
 * @throws IOException if error
 */
public boolean syncExtend() throws IOException {
 //unlocked = false;
 return (spi != null) && spi.syncExtend();
}
origin: Unidata/thredds

/**
 * Extend the file if needed, in a way that is compatible with the current metadata, that is,
 * does not invalidate structural metadata held by the application.
 * For example, ok if dimension lengths, data has changed.
 * All previous object references (variables, dimensions, etc) remain valid.
 *
 * @return true if file was extended.
 * @throws IOException if error
 */
public boolean syncExtend() throws IOException {
 //unlocked = false;
 return (spi != null) && spi.syncExtend();
}
ucar.nc2.iospIOServiceProvidersyncExtend

Javadoc

Extend the NetcdfFile if the underlying dataset has changed in a way that is compatible with the current metadata. For example, if the unlimited dimension has grown.

Popular methods of IOServiceProvider

  • getFileTypeId
    Get a unique id for this file type.
  • close
    Close the file. It is the IOServiceProvider's job to close the file (even though it didnt open it),
  • getDetailInfo
    Show debug / underlying implementation details
  • getFileTypeDescription
    Get a human-readable description for this file type.
  • getFileTypeVersion
    Get the version of this file type.
  • getStructureIterator
    Get the structure iterator. iosps with top level sequences must override
  • isValidFile
    Check if this is a valid file for this IOServiceProvider. You must make this method thread safe, ie
  • open
    Open existing file, and populate ncfile with it. This method is only called by the NetcdfFile constr
  • readData
    Read data from a top level Variable and return a memory resident Array. This Array has the same elem
  • readSection
    Allows reading sections of nested variables
  • readToByteChannel
    Read data from a top level Variable and send data to a WritableByteChannel. Must be in big-endian or
  • readToOutputStream
  • readToByteChannel,
  • readToOutputStream,
  • sendIospMessage,
  • toStringDebug,
  • reacquire,
  • release

Popular in Java

  • Making http requests using okhttp
  • compareTo (BigDecimal)
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now