IFileIo.java 412 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.starcharge.component.datastore.fileio;

public interface IFileIo {

	public void save(FileIoEntity entity);

	public void saveBak(FileIoEntity entity);

	public void updateContent(String id, final byte[] content);

	public boolean remove(FileIoEntity entity);

	public byte[] get(String id);

	public void execute(FileIoEntity fileIoEntity, IFileInputStream fileInputStreamImpl) throws Exception;

}