Skip to content
Snippets Groups Projects
Commit ea2aa9ee authored by Simon Ehrenstein's avatar Simon Ehrenstein
Browse files

Add Javadoc

parent 8c49b983
No related branches found
No related tags found
1 merge request!6Add Distributed Workload Generator
package theodolite.commons.workloadgeneration.functions;
/**
* Describes the before action which is executed before every sub experiment.
*/
@FunctionalInterface
public interface BeforeAction {
public void run();
}
......@@ -2,6 +2,12 @@ package theodolite.commons.workloadgeneration.functions;
import kieker.common.record.IMonitoringRecord;
/**
* This interface describes a function that takes meta information from a string (e.g. an ID) and
* produces an {@link IMonitoringRecord}.
*
* @param <T> the type of the objects that will be generated by the function.
*/
@FunctionalInterface
public interface MessageGenerator<T extends IMonitoringRecord> {
......
......@@ -2,6 +2,12 @@ package theodolite.commons.workloadgeneration.functions;
import kieker.common.record.IMonitoringRecord;
/**
* This interface describes a function that consumes a {@link IMonitoringRecord}. This function is
* dedicated to be used to transport individual messages to the messaging system.
*
* @param <T> the type of records to send as messages.
*/
@FunctionalInterface
public interface Transport<T extends IMonitoringRecord> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment