package dslog; import java.io.IOException; import java.io.Closeable; interface Versioned extends Closeable { public int version() throws IOException; public static interface Supplier { public Versioned get() throws IOException; } }