Skip to content

Commit

Permalink
deleting obsolete files "DEECoSimulationRealm" and
Browse files Browse the repository at this point in the history
"TerminationTimeHolder"
  • Loading branch information
iliasger committed Feb 14, 2015
1 parent 9afa60d commit bd58b4e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 63 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package cz.cuni.mff.d3s.deeco.runtime;

import cz.cuni.mff.d3s.deeco.scheduler.notifier.SchedulerNotifier;
import cz.cuni.mff.d3s.deeco.scheduler.notifier.SchedulerNotifierEventListener;

public interface SimulationSchedulerNotifier extends SchedulerNotifier {

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import org.junit.contrib.java.lang.system.StandardOutputStreamLog;

import cz.cuni.mff.d3s.deeco.annotations.processor.AnnotationProcessorException;
import cz.cuni.mff.d3s.deeco.runtime.DEECoNode;
import cz.cuni.mff.d3s.deeco.runners.DEECoSimulation;
import cz.cuni.mff.d3s.deeco.runtime.DEECoException;
import cz.cuni.mff.d3s.deeco.runtime.DEECoSimulationRealm;
import cz.cuni.mff.d3s.deeco.runtime.DEECoNode;
import cz.cuni.mff.d3s.deeco.runtime.SimulationSchedulerNotifier;
import cz.cuni.mff.d3s.deeco.scheduler.notifier.DiscreteEventSchedulerNotifier;
/**
Expand All @@ -30,7 +30,7 @@ public void testConvoy() throws AnnotationProcessorException, InterruptedExcepti

/* create main application container */
SimulationSchedulerNotifier simulationSchedulerNotifier = new DiscreteEventSchedulerNotifier(); // also "new WallTimeSchedulerNotifier()"
DEECoSimulationRealm realm = new DEECoSimulationRealm(simulationSchedulerNotifier);
DEECoSimulation realm = new DEECoSimulation(simulationSchedulerNotifier);

/* create first deeco node */
DEECoNode deeco1 = realm.createNode();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import org.junit.contrib.java.lang.system.StandardOutputStreamLog;

import cz.cuni.mff.d3s.deeco.annotations.processor.AnnotationProcessorException;
import cz.cuni.mff.d3s.deeco.runtime.DEECoNode;
import cz.cuni.mff.d3s.deeco.runners.DEECoSimulation;
import cz.cuni.mff.d3s.deeco.runtime.DEECoException;
import cz.cuni.mff.d3s.deeco.runtime.DEECoSimulationRealm;
import cz.cuni.mff.d3s.deeco.runtime.DEECoNode;
import cz.cuni.mff.d3s.deeco.runtime.SimulationSchedulerNotifier;
import cz.cuni.mff.d3s.deeco.scheduler.notifier.DiscreteEventSchedulerNotifier;
/**
Expand All @@ -30,7 +30,7 @@ public void testConvoy() throws AnnotationProcessorException, InterruptedExcepti

/* create main application container */
SimulationSchedulerNotifier simulationSchedulerNotifier = new DiscreteEventSchedulerNotifier();
DEECoSimulationRealm realm = new DEECoSimulationRealm(simulationSchedulerNotifier);
DEECoSimulation realm = new DEECoSimulation(simulationSchedulerNotifier);

/* create one and only deeco node (centralized deployment) */
DEECoNode deeco = realm.createNode();
Expand Down

0 comments on commit bd58b4e

Please sign in to comment.