org.iq80.leveldb.impl.LogWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SWBTripleStoreLevelDB Show documentation
Show all versions of SWBTripleStoreLevelDB Show documentation
TripleStore implementation for SemanticWebBuilder using LevelDB
The newest version!
package org.iq80.leveldb.impl;
import org.iq80.leveldb.util.Slice;
import java.io.File;
import java.io.IOException;
public interface LogWriter
{
boolean isClosed();
void close()
throws IOException;
void delete()
throws IOException;
File getFile();
long getFileNumber();
// Writes a stream of chunks such that no chunk is split across a block boundary
void addRecord(Slice record, boolean force)
throws IOException;
}