
com.emc.mongoose.load.step.local.context.LoadStepContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose Show documentation
Show all versions of mongoose Show documentation
Mongoose is a high-load storage performance testing tool
The newest version!
package com.emc.mongoose.load.step.local.context;
import com.emc.mongoose.concurrent.Daemon;
import com.emc.mongoose.exception.InterruptRunException;
import com.emc.mongoose.item.op.Operation;
import com.emc.mongoose.item.Item;
import com.github.akurilov.commons.concurrent.AsyncRunnable;
import com.github.akurilov.commons.io.Input;
import com.github.akurilov.commons.io.Output;
import java.io.IOException;
/**
Created on 11.07.16.
*/
public interface LoadStepContext>
extends Daemon, Output {
void operationsResultsOutput(final Output opsResultsOutput);
int activeOpCount();
boolean isDone();
default Input getInput() {
throw new AssertionError("Shouldn't be invoked");
}
@Override
AsyncRunnable stop()
throws InterruptRunException;
@Override
void close()
throws InterruptRunException, IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy