com.github.bezsias.multimap.Reader Maven / Gradle / Ivy
The newest version!
package com.github.bezsias.multimap;
import java.io.ObjectInputStream;
import java.io.DataInputStream;
import java.io.IOException;
interface Reader {
T read(ObjectInputStream is, DataInputStream dis) throws IOException, ClassNotFoundException;
}