mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#define FML_USED_ON_EMBEDDER
|
|
|
|
#include "flutter/fml/delayed_task.h"
|
|
|
|
namespace fml {
|
|
|
|
DelayedTask::DelayedTask(size_t order,
|
|
const fml::closure& task,
|
|
fml::TimePoint target_time,
|
|
fml::TaskSourceGrade task_source_grade)
|
|
: order_(order),
|
|
task_(task),
|
|
target_time_(target_time),
|
|
task_source_grade_(task_source_grade) {}
|
|
|
|
DelayedTask::~DelayedTask() = default;
|
|
|
|
DelayedTask::DelayedTask(const DelayedTask& other) = default;
|
|
|
|
const fml::closure& DelayedTask::GetTask() const {
|
|
return task_;
|
|
}
|
|
|
|
fml::TimePoint DelayedTask::GetTargetTime() const {
|
|
return target_time_;
|
|
}
|
|
|
|
fml::TaskSourceGrade DelayedTask::GetTaskSourceGrade() const {
|
|
return task_source_grade_;
|
|
}
|
|
|
|
bool DelayedTask::operator>(const DelayedTask& other) const {
|
|
if (target_time_ == other.target_time_) {
|
|
return order_ > other.order_;
|
|
}
|
|
return target_time_ > other.target_time_;
|
|
}
|
|
|
|
} // namespace fml
|