Rename handle_message to on_message

This commit is contained in:
Antonio Scandurra 2021-06-17 17:25:10 +02:00
parent 82ac7e2072
commit 4d28d03e3f
2 changed files with 3 additions and 3 deletions

View file

@ -32,14 +32,14 @@ where
}
pub trait PeerExt {
fn handle_messages<H, M>(&self, handler: H, cx: &mut gpui::MutableAppContext)
fn on_message<H, M>(&self, handler: H, cx: &mut gpui::MutableAppContext)
where
H: 'static + for<'a> MessageHandler<'a, M>,
M: proto::EnvelopedMessage;
}
impl PeerExt for Arc<Peer> {
fn handle_messages<H, M>(&self, handler: H, cx: &mut gpui::MutableAppContext)
fn on_message<H, M>(&self, handler: H, cx: &mut gpui::MutableAppContext)
where
H: 'static + for<'a> MessageHandler<'a, M>,
M: proto::EnvelopedMessage,

View file

@ -46,7 +46,7 @@ pub fn init(cx: &mut MutableAppContext, rpc: Arc<Peer>) {
]);
pane::init(cx);
rpc.handle_messages(handle_open_buffer, cx);
rpc.on_message(handle_open_buffer, cx);
}
pub struct OpenParams {