|
@@ -5,6 +5,8 @@ import java.util.Comparator;
|
|
|
import java.util.LinkedList;
|
|
|
import java.util.ListIterator;
|
|
|
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.util.PacketComparator;
|
|
|
+
|
|
|
/**
|
|
|
* Implementation of the Connection Interface, with focus on precision
|
|
|
*
|
|
@@ -114,9 +116,15 @@ public class ConnectionPrecision extends ConnectionPerformance {
|
|
|
/**
|
|
|
* Sort and return packages
|
|
|
*/
|
|
|
- returnPackets.sort((a,b)->(Long.compare(a.getTimestamp(),b.getTimestamp())));
|
|
|
+ returnPackets.sort(new PacketComparator());
|
|
|
return returnPackets;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Comparator for comparing the next trigger time of two ports, the lower one should trigger first
|
|
|
+ *
|
|
|
+ * @author Andreas T. Meyer-Berg
|
|
|
+ */
|
|
|
private class PortComparator implements Comparator<Port>{
|
|
|
|
|
|
@Override
|