webrtc/rtc_base/task_utils/BUILD.gn
Sebastian Jansson ecb6897ade Adds repeating task class.
This CL adds a single class to manage the use case of having a task
that repeats itself by a fixed or variable interval. It replaces the
repeating task previously locally defined for rtp transport controller
send as well as the cancelable periodic task. Furthermore, it is
introduced where one off repeating tasks were created before.

It provides the currently used functionality of the cancelable periodic
task, but not some of the unused features, such as allowing cancellation
of tasks before they are started and cancellation of a task after the
owning task queue has been destroyed.

Bug: webrtc:9883
Change-Id: Ifa7edee836c2a64fce16a7d0f682eb09c879eaca
Reviewed-on: https://webrtc-review.googlesource.com/c/116182
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26313}
2019-01-18 10:55:41 +00:00

41 lines
1.1 KiB
Text

# Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
import("../../webrtc.gni")
rtc_source_set("repeating_task") {
sources = [
"repeating_task.cc",
"repeating_task.h",
]
deps = [
"..:logging",
"..:rtc_task_queue_api",
"..:sequenced_task_checker",
"..:thread_checker",
"..:timeutils",
"../../api/units:time_delta",
"../../api/units:timestamp",
"//third_party/abseil-cpp/absl/memory",
]
}
if (rtc_include_tests) {
rtc_source_set("repeating_task_unittests") {
testonly = true
sources = [
"repeating_task_unittest.cc",
]
deps = [
":repeating_task",
"..:rtc_base_approved",
"../../test:test_support",
"//third_party/abseil-cpp/absl/memory",
]
}
}