Project

General

Profile

« Previous | Next » 

Revision 46509

unit tests, working on readlocks

View differences:

MDStoreService.java
10 10
 */
11 11
public interface MDStoreService {
12 12

  
13
	enum FeedMode { REFRESH, INCREMENTAL }
14

  
13 15
 	String create(final String format, final String layout, final String interpretation) throws MDStoreException;
14 16

  
15 17
	void delete(final String mdId) throws MDStoreException;
......
32 34

  
33 35
	int size(final String format, final String layout, final String interpretation);
34 36

  
35
	void store(final String mdId, Stream<String> records, final String storingType) throws MDStoreException;
37
	void store(final String mdId, Stream<String> records, final FeedMode feedMode) throws MDStoreException;
36 38

  
37 39
}

Also available in: Unified diff