Project

General

Profile

1
package eu.dnetlib.dhp.wf.importer;
2

    
3
import java.io.IOException;
4

    
5
/**
6
 * Record receiver interface.
7
 * @author mhorst
8
 *
9
 * @param <T>
10
 */
11
public interface RecordReceiver<T> {
12

    
13
	void receive(T object) throws IOException; 
14
}
(4-4/4)