summaryrefslogtreecommitdiffstats
path: root/toolkit/components/bitsdownload/src/bits_interface/task/mod.rs
blob: b6b96d887b5a1c7a7da980e7f6b175a0f6f2e68b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
mod from_threadbound;

use super::{action, dispatch_callback, error, request::BitsRequest, string, BitsService};

mod client;
pub use self::client::ClientInitData;

mod service_task;
pub use self::service_task::{MonitorDownloadTask, StartDownloadTask};

mod request_task;
pub use self::request_task::{
    CancelTask, ChangeMonitorIntervalTask, CompleteTask, Priority, ResumeTask,
    SetNoProgressTimeoutTask, SetPriorityTask, SuspendTask,
};