blob: 3896c06298746fd80cdfea38e5c69be7919e7874 [file] [log] [blame]
/*
* Copyright (C) 2013 The University of Manchester
*
* See the file "LICENSE" for license terms.
*/
package org.taverna.server.localworker.api;
/**
*
* @author Donal Fellows
*/
public interface RunAccounting {
/**
* Logs that a run has started executing.
*/
void runStarted();
/**
* Logs that a run has finished executing.
*/
void runCeased();
}