Skip to content
Snippets Groups Projects
Commit f87617fe authored by Sören Henning's avatar Sören Henning
Browse files

added Teetime stage BlueprintsTransformerStage

parent 0321cc85
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
Pipeline #
package kieker.analysis.graph.export.blueprints;
import kieker.analysis.graph.Graph;
import teetime.stage.basic.AbstractTransformation;
public class BlueprintsTransformerStage extends AbstractTransformation<Graph, com.tinkerpop.blueprints.Graph> {
public BlueprintsTransformerStage() {
super();
}
@Override
protected void execute(final Graph graph) {
BlueprintsTransformer transformer = new BlueprintsTransformer(graph);
this.getOutputPort().send(transformer.transform());
}
}
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