1 package org.smartcomps.twister.engine.priv.core.dynamic.impl;
2
3 import org.smartcomps.twister.engine.priv.core.dynamic.EmptyEC;
4
5 /***
6 * Persistent implementation of the empty execution context.
7 */
8 public class EmptyECImpl extends BasicECImpl implements EmptyEC {
9
10 public void execute() {
11 notifyExecutionToContainer();
12 this.setStatus(COMPLETED);
13 notifyTerminationToContainer();
14 }
15 }
This page was automatically generated by Maven