Updated documentation for mock a1 tool
[ric-app/admin.git] / src / message_processor_class.hpp
index f289711..5ff3961 100644 (file)
@@ -67,7 +67,7 @@ typedef enum {
 class message_processor {
 
 public:
-  message_processor(int mode=ALL, bool rep=true, size_t buffer_length = 2048, size_t reporting_interval = 100);
+  message_processor(int mode=ALL, bool rep=true, size_t buffer_length = 2048);
   ~message_processor(void);
   
   bool operator() (rmr_mbuf_t *);  
@@ -111,16 +111,6 @@ private:
   bool report_mode_only; // suppress e2ap control
   size_t _buffer_size; // for storing encoding
 
-  // these two parameters are used to report average processing latency.
-  // processing latency is accumalated over every num_proc_packets
-  // and both values are reported out on std log. After each report
-  // counters are reset
-
-  size_t _reporting_interval; // number of packets in a measurement interval
-  size_t num_proc_packets;
-  double processing_duration; // for storing time to process
-  double processing_dev; // for storing standard deviation
-  double max_proc_duration ;
 };