@@ -46,7 +46,6 @@ class InputStream
46
46
47
47
void init (const InputChannel & input_channel);
48
48
49
- void setQueueSize (size_t que_size) { que_size_ = que_size; }
50
49
void setTriggerFunction (std::function<void (const uint &)> func_trigger)
51
50
{
52
51
func_trigger_ = func_trigger;
@@ -60,15 +59,8 @@ class InputStream
60
59
void getObjectsOlderThan (
61
60
const rclcpp::Time & object_latest_time, const rclcpp::Time & object_oldest_time,
62
61
ObjectsList & objects_list);
63
- void getNames (std::string & long_name, std::string & short_name) const
64
- {
65
- long_name = long_name_;
66
- short_name = short_name_;
67
- }
68
62
bool isSpawnEnabled () const { return is_spawn_enabled_; }
69
63
70
- std::string getLongName () const { return long_name_; }
71
- size_t getObjectsCount () const { return objects_que_.size (); }
72
64
void getTimeStatistics (
73
65
double & latency_mean, double & latency_var, double & interval_mean,
74
66
double & interval_var) const
@@ -78,13 +70,6 @@ class InputStream
78
70
interval_mean = interval_mean_;
79
71
interval_var = interval_var_;
80
72
}
81
- void getLatencyStatistics (double & latency_mean, double & latency_var) const
82
- {
83
- latency_mean = latency_mean_;
84
- latency_var = latency_var_;
85
- }
86
- bool getTimestamps (
87
- rclcpp::Time & latest_measurement_time, rclcpp::Time & latest_message_time) const ;
88
73
rclcpp::Time getLatestMeasurementTime () const { return latest_measurement_time_; }
89
74
90
75
private:
0 commit comments