torrust-actix 4.2.3

A rich, fast and efficient Bittorrent Tracker.
1
2
3
4
5
use crate::websocket::structs::cluster_response::ClusterResponse;
use tokio::sync::oneshot;

pub type PendingRequestSender = oneshot::Sender<ClusterResponse>;
pub type SlaveSenderChannel = parking_lot::RwLock<Option<tokio::sync::mpsc::UnboundedSender<Vec<u8>>>>;