All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.util.io.PersistentMap Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition util library. This is release number 1 of trunk branch 142.

The newest version!
package com.intellij.util.io;

import com.intellij.util.Processor;

import java.io.IOException;

/**
 * @author Dmitry Avdeev
 *         Date: 8/10/11
 */
public interface PersistentMap {
  
  V get(K key) throws IOException;

  void put(K key, V value) throws IOException;

  boolean processKeys(Processor processor) throws IOException;


  boolean isClosed();

  boolean isDirty();

  void force();

  void close() throws IOException;

  void markDirty() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy