Home | History | Annotate | Download | only in src

Lines Matching refs:Worker

220 class Worker {
222 Worker();
223 ~Worker();
225 // Run the given script on this Worker. This function should only be called
226 // once, and should only be called by the thread that created the Worker.
228 // Post a message to the worker's incoming message queue. The worker will
230 // This function should only be called by the thread that created the Worker.
232 // Synchronously retrieve messages from the worker's outgoing message queue.
234 // If there are no messages in the queue and the worker is no longer running,
236 // This function should only be called by the thread that created the Worker.
238 // Terminate the worker's event loop. Messages from the worker that have been
249 explicit WorkerThread(Worker* worker)
251 worker_(worker) {}
256 Worker* worker_;
461 static i::List<Worker*> workers_;