All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.mongoose.api.model.io.task.path.PathIoTask Maven / Gradle / Ivy

There is a newer version: 4.0.0-alpha5
Show newest version
package com.emc.mongoose.api.model.io.task.path;

import com.emc.mongoose.api.model.io.task.IoTask;
import com.emc.mongoose.api.model.item.PathItem;

/**
 Created by kurila on 30.01.17.
 */
public interface PathIoTask
extends IoTask {

	@Override
	I getItem();
	
	long getCountBytesDone();
	
	void setCountBytesDone(long n);
	
	long getRespDataTimeStart();
	
	void startDataResponse();
}