IFileInputStream.java 196 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8
package com.starcharge.component.datastore.fileio;

import java.io.InputStream;

public interface IFileInputStream {

	public void execute(FileIoEntity entity, InputStream is) throws Exception;
}