aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/metrics/ThroughputMeasurement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/metrics/ThroughputMeasurement.cpp')
-rw-r--r--src/libdash/source/metrics/ThroughputMeasurement.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/libdash/source/metrics/ThroughputMeasurement.cpp b/src/libdash/source/metrics/ThroughputMeasurement.cpp
new file mode 100644
index 00000000..8d2c485e
--- /dev/null
+++ b/src/libdash/source/metrics/ThroughputMeasurement.cpp
@@ -0,0 +1,46 @@
+/*
+ * ThroughputMeasurement.cpp
+ *****************************************************************************
+ * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
+ *
+ * Email: libdash-dev@vicky.bitmovin.net
+ *
+ * This source code and its use and distribution, is subject to the terms
+ * and conditions of the applicable license agreement.
+ *****************************************************************************/
+
+#include "ThroughputMeasurement.h"
+
+using namespace dash::metrics;
+
+ThroughputMeasurement::ThroughputMeasurement ()
+{
+}
+ThroughputMeasurement::~ThroughputMeasurement()
+{
+}
+
+const std::string& ThroughputMeasurement::StartOfPeriod () const
+{
+ return this->startOfPeriod;
+}
+void ThroughputMeasurement::SetStartOfPeriod (std::string start)
+{
+ this->startOfPeriod = start;
+}
+uint64_t ThroughputMeasurement::DurationOfPeriod () const
+{
+ return this->durationOfPeriod;
+}
+void ThroughputMeasurement::SetDurationOfPeriod (uint64_t duration)
+{
+ this->durationOfPeriod = duration;
+}
+const std::vector<uint32_t>& ThroughputMeasurement::ReceivedBytesPerTrace () const
+{
+ return this->receivedBytesPerTrace;
+}
+void ThroughputMeasurement::AddReceivedBytes (uint32_t numberOfBytes)
+{
+ this->receivedBytesPerTrace.push_back(numberOfBytes);
+}