aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/blocking/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/blocking/mod.rs')
-rw-r--r--src/runtime/blocking/mod.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/runtime/blocking/mod.rs b/src/runtime/blocking/mod.rs
index fece3c2..670ec3a 100644
--- a/src/runtime/blocking/mod.rs
+++ b/src/runtime/blocking/mod.rs
@@ -8,7 +8,9 @@ pub(crate) use pool::{spawn_blocking, BlockingPool, Spawner};
mod schedule;
mod shutdown;
-pub(crate) mod task;
+mod task;
+pub(crate) use schedule::NoopSchedule;
+pub(crate) use task::BlockingTask;
use crate::runtime::Builder;