2019-06-26 15:19:40 +06:00
|
|
|
use std::fmt;
|
|
|
|
|
2019-11-14 18:38:24 +06:00
|
|
|
use actix_utils::{mpsc, oneshot};
|
|
|
|
use futures::future::{Future, FutureExt};
|
2019-06-26 15:19:40 +06:00
|
|
|
|
|
|
|
use crate::dispatcher::FramedMessage;
|
|
|
|
|
2019-11-14 18:38:24 +06:00
|
|
|
pub struct Sink<T>(mpsc::Sender<FramedMessage<T>>);
|
2019-06-26 15:19:40 +06:00
|
|
|
|
|
|
|
impl<T> Clone for Sink<T> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Sink(self.0.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Sink<T> {
|
2019-11-14 18:38:24 +06:00
|
|
|
pub(crate) fn new(tx: mpsc::Sender<FramedMessage<T>>) -> Self {
|
2019-06-26 15:19:40 +06:00
|
|
|
Sink(tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Close connection
|
|
|
|
pub fn close(&self) {
|
2019-11-14 18:38:24 +06:00
|
|
|
let _ = self.0.send(FramedMessage::Close);
|
2019-06-26 15:19:40 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Close connection
|
2019-11-14 18:38:24 +06:00
|
|
|
pub fn wait_close(&self) -> impl Future<Output = ()> {
|
2019-06-26 15:19:40 +06:00
|
|
|
let (tx, rx) = oneshot::channel();
|
2019-11-14 18:38:24 +06:00
|
|
|
let _ = self.0.send(FramedMessage::WaitClose(tx));
|
2019-06-26 15:19:40 +06:00
|
|
|
|
2019-11-14 18:38:24 +06:00
|
|
|
rx.map(|_| ())
|
2019-06-26 15:19:40 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Send item
|
|
|
|
pub fn send(&self, item: T) {
|
2019-11-14 18:38:24 +06:00
|
|
|
let _ = self.0.send(FramedMessage::Message(item));
|
2019-06-26 15:19:40 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> fmt::Debug for Sink<T> {
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt.debug_struct("Sink").finish()
|
|
|
|
}
|
|
|
|
}
|