com.github.bezsias.multimap.Writer Maven / Gradle / Ivy
The newest version!
package com.github.bezsias.multimap;
import java.io.ObjectOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
interface Writer {
void write(T t, ObjectOutputStream os, DataOutputStream dos) throws IOException;
}