@@ -162,14 +162,28 @@ impl std::fmt::Display for JobId {
162
162
}
163
163
}
164
164
165
+ /// A `JobState` is constructed by `JobQueue::run` and passed to `Job::run`. It includes everything
166
+ /// necessary to communicate between the main thread and the execution of the job.
167
+ ///
168
+ /// The job may execute on either a dedicated thread or the main thread. If the job executes on the
169
+ /// main thread, the `output` field must be set to prevent a deadlock.
165
170
pub struct JobState < ' a > {
166
171
/// Channel back to the main thread to coordinate messages and such.
172
+ ///
173
+ /// When the `output` field is `Some`, care must be taken to avoid calling `push_bounded` on
174
+ /// the message queue to prevent a deadlock.
167
175
messages : Arc < Queue < Message > > ,
168
176
169
177
/// Normally output is sent to the job queue with backpressure. When the job is fresh
170
178
/// however we need to immediately display the output to prevent a deadlock as the
171
179
/// output messages are processed on the same thread as they are sent from. `output`
172
180
/// defines where to output in this case.
181
+ ///
182
+ /// Currently the `Shell` inside `Config` is wrapped in a `RefCell` and thus can't be passed
183
+ /// between threads. This means that it isn't possible for multiple output messages to be
184
+ /// interleaved. In the future, it may be wrapped in a `Mutex` instead. In this case
185
+ /// interleaving is still prevented as the lock would be held for the whole printing of an
186
+ /// output message.
173
187
output : Option < & ' a Config > ,
174
188
175
189
/// The job id that this state is associated with, used when sending
0 commit comments