6
6
//! that `tokio::runtime` can be multi-threaded.
7
7
8
8
use std:: io;
9
- use tokio;
10
9
11
10
use futures01:: Future ;
12
11
13
12
/// Possibly uninitialized event loop executor.
14
13
#[ derive( Debug ) ]
15
14
pub enum UninitializedExecutor {
16
15
/// Shared instance of executor.
17
- Shared ( tokio:: runtime:: TaskExecutor ) ,
18
- /// Shared instance of executor.
19
- Compat ( tokio_compat:: runtime:: TaskExecutor ) ,
16
+ Shared ( tokio_compat:: runtime:: TaskExecutor ) ,
20
17
/// Event Loop should be spawned by the transport.
21
18
Unspawned ,
22
19
}
@@ -35,7 +32,6 @@ impl UninitializedExecutor {
35
32
pub fn init_with_name < T : Into < String > > ( self , name : T ) -> io:: Result < Executor > {
36
33
match self {
37
34
UninitializedExecutor :: Shared ( executor) => Ok ( Executor :: Shared ( executor) ) ,
38
- UninitializedExecutor :: Compat ( executor) => Ok ( Executor :: Compat ( executor) ) ,
39
35
UninitializedExecutor :: Unspawned => RpcEventLoop :: with_name ( Some ( name. into ( ) ) ) . map ( Executor :: Spawned ) ,
40
36
}
41
37
}
@@ -45,19 +41,16 @@ impl UninitializedExecutor {
45
41
#[ derive( Debug ) ]
46
42
pub enum Executor {
47
43
/// Shared instance
48
- Shared ( tokio:: runtime:: TaskExecutor ) ,
49
- /// Shared instance
50
- Compat ( tokio_compat:: runtime:: TaskExecutor ) ,
44
+ Shared ( tokio_compat:: runtime:: TaskExecutor ) ,
51
45
/// Spawned Event Loop
52
46
Spawned ( RpcEventLoop ) ,
53
47
}
54
48
55
49
impl Executor {
56
50
/// Get tokio executor associated with this event loop.
57
- pub fn executor ( & self ) -> tokio :: runtime:: TaskExecutor {
58
- match * self {
51
+ pub fn executor ( & self ) -> tokio_compat :: runtime:: TaskExecutor {
52
+ match self {
59
53
Executor :: Shared ( ref executor) => executor. clone ( ) ,
60
- Executor :: Compat ( ..) => panic ! ( ) ,
61
54
Executor :: Spawned ( ref eloop) => eloop. executor ( ) ,
62
55
}
63
56
}
@@ -69,7 +62,6 @@ impl Executor {
69
62
{
70
63
match self {
71
64
Executor :: Shared ( exe) => exe. spawn ( future) ,
72
- Executor :: Compat ( exe) => exe. spawn ( future) ,
73
65
Executor :: Spawned ( eloop) => eloop. executor ( ) . spawn ( future) ,
74
66
}
75
67
}
@@ -92,9 +84,9 @@ impl Executor {
92
84
/// A handle to running event loop. Dropping the handle will cause event loop to finish.
93
85
#[ derive( Debug ) ]
94
86
pub struct RpcEventLoop {
95
- executor : tokio :: runtime:: TaskExecutor ,
87
+ executor : tokio_compat :: runtime:: TaskExecutor ,
96
88
close : Option < futures01:: Complete < ( ) > > ,
97
- handle : Option < tokio :: runtime:: Shutdown > ,
89
+ runtime : Option < tokio_compat :: runtime:: Runtime > ,
98
90
}
99
91
100
92
impl Drop for RpcEventLoop {
@@ -113,34 +105,33 @@ impl RpcEventLoop {
113
105
pub fn with_name ( name : Option < String > ) -> io:: Result < Self > {
114
106
let ( stop, stopped) = futures01:: oneshot ( ) ;
115
107
116
- let mut tb = tokio :: runtime:: Builder :: new ( ) ;
108
+ let mut tb = tokio_compat :: runtime:: Builder :: new ( ) ;
117
109
tb. core_threads ( 1 ) ;
118
110
119
111
if let Some ( name) = name {
120
112
tb. name_prefix ( name) ;
121
113
}
122
114
123
- let mut runtime = tb. build ( ) ?;
115
+ let runtime = tb. build ( ) ?;
124
116
let executor = runtime. executor ( ) ;
125
117
let terminate = futures01:: empty ( ) . select ( stopped) . map ( |_| ( ) ) . map_err ( |_| ( ) ) ;
126
118
runtime. spawn ( terminate) ;
127
- let handle = runtime. shutdown_on_idle ( ) ;
128
119
129
120
Ok ( RpcEventLoop {
130
121
executor,
131
122
close : Some ( stop) ,
132
- handle : Some ( handle ) ,
123
+ runtime : Some ( runtime ) ,
133
124
} )
134
125
}
135
126
136
127
/// Get executor for this event loop.
137
- pub fn executor ( & self ) -> tokio :: runtime:: TaskExecutor {
128
+ pub fn executor ( & self ) -> tokio_compat :: runtime:: TaskExecutor {
138
129
self . executor . clone ( )
139
130
}
140
131
141
132
/// Blocks current thread and waits until the event loop is finished.
142
133
pub fn wait ( mut self ) -> Result < ( ) , ( ) > {
143
- self . handle . take ( ) . ok_or ( ( ) ) ?. wait ( )
134
+ self . runtime . take ( ) . ok_or ( ( ) ) ?. shutdown_on_idle ( ) . wait ( )
144
135
}
145
136
146
137
/// Finishes this event loop.
0 commit comments