blob: b9849408863910cd1ea5b4e4b26ac81340a30c8f [file] [log] [blame]
package org.apache.airavata.compute.resource.monitoring.job.output;
import org.apache.airavata.agents.api.CommandOutput;
/**
* This interface is responsible for parsing output of agent adaptors and derive decisions
*/
public interface OutputParser {
boolean isComputeResourceAvailable(CommandOutput commandOutput, String type);
int getNumberofJobs(CommandOutput commandOutput, String type);
}