Project import generated by Copybara.
GitOrigin-RevId: f4b1fe3f15810450fb6539e733f6a260d3ee082c
This commit is contained in:
@@ -465,7 +465,7 @@ absl::Status CalculatorGraph::ObserveOutputStream(
|
||||
}
|
||||
|
||||
absl::StatusOr<OutputStreamPoller> CalculatorGraph::AddOutputStreamPoller(
|
||||
const std::string& stream_name) {
|
||||
const std::string& stream_name, bool observe_timestamp_bounds) {
|
||||
RET_CHECK(initialized_).SetNoLogging()
|
||||
<< "CalculatorGraph is not initialized.";
|
||||
int output_stream_index = validated_graph_->OutputStreamIndex(stream_name);
|
||||
@@ -479,7 +479,7 @@ absl::StatusOr<OutputStreamPoller> CalculatorGraph::AddOutputStreamPoller(
|
||||
stream_name, &any_packet_type_,
|
||||
std::bind(&CalculatorGraph::UpdateThrottledNodes, this,
|
||||
std::placeholders::_1, std::placeholders::_2),
|
||||
&output_stream_managers_[output_stream_index]));
|
||||
&output_stream_managers_[output_stream_index], observe_timestamp_bounds));
|
||||
OutputStreamPoller poller(internal_poller);
|
||||
graph_output_streams_.push_back(std::move(internal_poller));
|
||||
return std::move(poller);
|
||||
|
||||
Reference in New Issue
Block a user