Class DiskLruCache.Editor

java.lang.Object
com.bumptech.glide.disklrucache.DiskLruCache.Editor
Enclosing class:
DiskLruCache

public final class DiskLruCache.Editor extends Object
Edits the values for an entry.
  • Method Details

    • getString

      public String getString(int index) throws IOException
      Returns the last committed value as a string, or null if no value has been committed.
      Throws:
      IOException
    • getFile

      public File getFile(int index) throws IOException
      Throws:
      IOException
    • set

      public void set(int index, String value) throws IOException
      Sets the value at index to value.
      Throws:
      IOException
    • commit

      public void commit() throws IOException
      Commits this edit so it is visible to readers. This releases the edit lock so another edit may be started on the same key.
      Throws:
      IOException
    • abort

      public void abort() throws IOException
      Aborts this edit. This releases the edit lock so another edit may be started on the same key.
      Throws:
      IOException
    • abortUnlessCommitted

      public void abortUnlessCommitted()