Rename both PlatformDispatcher::poll and Executor::run_step to 'tick'

Co-authored-by: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Max Brunsfeld 2023-11-16 19:58:18 -08:00
parent 17b2b112bc
commit f3b6719c76
5 changed files with 8 additions and 8 deletions

View file

@ -158,7 +158,7 @@ impl BackgroundExecutor {
match future.as_mut().poll(&mut cx) {
Poll::Ready(result) => return result,
Poll::Pending => {
if !self.dispatcher.poll(background_only) {
if !self.dispatcher.tick(background_only) {
if awoken.swap(false, SeqCst) {
continue;
}
@ -255,8 +255,8 @@ impl BackgroundExecutor {
}
#[cfg(any(test, feature = "test-support"))]
pub fn run_step(&self) -> bool {
self.dispatcher.as_test().unwrap().poll(false)
pub fn tick(&self) -> bool {
self.dispatcher.as_test().unwrap().tick(false)
}
#[cfg(any(test, feature = "test-support"))]