From dc4c448e597b08cba4c79c194b0c1aa517daab29 Mon Sep 17 00:00:00 2001 From: hozan23 Date: Mon, 15 Jul 2024 13:28:00 +0200 Subject: core: rename EventSys to EventEmitter --- p2p/src/connection.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'p2p/src/connection.rs') diff --git a/p2p/src/connection.rs b/p2p/src/connection.rs index 52190a8..c1a7a8c 100644 --- a/p2p/src/connection.rs +++ b/p2p/src/connection.rs @@ -4,7 +4,7 @@ use async_channel::Sender; use bincode::Encode; use karyon_core::{ - event::{EventListener, EventSys}, + event::{EventEmitter, EventListener}, util::encode, }; @@ -36,8 +36,8 @@ pub struct Connection { pub(crate) direction: ConnDirection, conn: Conn, disconnect_signal: Sender>, - /// `EventSys` responsible for sending events to the registered protocols. - protocol_events: Arc>, + /// `EventEmitter` responsible for sending events to the registered protocols. + protocol_events: Arc>, pub(crate) remote_endpoint: Endpoint, listeners: HashMap>, } @@ -52,7 +52,7 @@ impl Connection { Self { conn, direction, - protocol_events: EventSys::new(), + protocol_events: EventEmitter::new(), disconnect_signal: signal, remote_endpoint, listeners: HashMap::new(), -- cgit v1.2.3