File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
3
## Unreleased - 2021-xx-xx
4
+ - Expose ` System::with_tokio_rt ` and ` Arbiter::with_tokio_rt ` . [ #430 ]
5
+
6
+ [ #430 ] : https://github.com/actix/actix-net/pull/430
4
7
5
8
6
9
## 2.5.0 - 2021-11-22
Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ impl Arbiter {
108
108
///
109
109
/// [tokio-runtime]: tokio::runtime::Runtime
110
110
#[ cfg( not( all( target_os = "linux" , feature = "io-uring" ) ) ) ]
111
- #[ doc( hidden) ]
112
111
pub fn with_tokio_rt < F > ( runtime_factory : F ) -> Arbiter
113
112
where
114
113
F : Fn ( ) -> tokio:: runtime:: Runtime + Send + ' static ,
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ impl System {
46
46
/// Create a new System using the [Tokio Runtime](tokio-runtime) returned from a closure.
47
47
///
48
48
/// [tokio-runtime]: tokio::runtime::Runtime
49
- #[ doc( hidden) ]
50
49
pub fn with_tokio_rt < F > ( runtime_factory : F ) -> SystemRunner
51
50
where
52
51
F : Fn ( ) -> tokio:: runtime:: Runtime ,
You can’t perform that action at this time.
0 commit comments