mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
Canonicalize actor API
This commit is contained in:
parent
193ea7cf9a
commit
331addcf61
2 changed files with 56 additions and 70 deletions
|
@ -83,8 +83,8 @@ impl NotifyActor {
|
|||
}
|
||||
}
|
||||
|
||||
fn run(mut self, receiver: Receiver<Message>) {
|
||||
while let Some(event) = self.next_event(&receiver) {
|
||||
fn run(mut self, inbox: Receiver<Message>) {
|
||||
while let Some(event) = self.next_event(&inbox) {
|
||||
log::debug!("vfs-notify event: {:?}", event);
|
||||
match event {
|
||||
Event::Message(msg) => match msg {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue