Skip to content
Snippets Groups Projects
Commit b7dc33fe authored by Florian Fittkau's avatar Florian Fittkau
Browse files

WiP

parent 085aae95
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,12 @@ public abstract class AbstractEventRecord implements ISerializableRecord {
public static final int COMPRESSED_BYTE_LENGTH = 8 + 4;
public static final int COMPRESSED_BYTE_LENGTH_WITH_CLAZZ_ID = 1 + COMPRESSED_BYTE_LENGTH;
protected static final int BYTE_LENGTH = COMPRESSED_BYTE_LENGTH;
protected static final int BYTE_LENGTH = COMPRESSED_BYTE_LENGTH + 4; // plus
// 4
// for
// bytelength
// at
// start
protected static final int BYTE_LENGTH_WITH_CLAZZ_ID = 1 + BYTE_LENGTH;
private final long traceId;
......
......@@ -149,4 +149,10 @@ public final class RuntimeStatisticInformation implements ISerializableRecord {
+ getStandardDeviation() + ", objectIds.size()=" + "null]";
}
}
public void set(final int count, final long time, final long squaredTime) {
this.count = count;
sum = time;
squaredSum = squaredTime;
}
}
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