1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use std::future::Future;
use std::io::Error as IOError;
use std::marker::Unpin;
use std::pin::Pin;
use std::result::Result as StdResult;
use std::sync::Arc;

use async_trait::async_trait;
use futures::channel::{mpsc, oneshot};
use futures::{Sink, Stream};
use tokio::sync::Notify;

use crate::payload::SetupPayload;
use crate::spi::{ClientResponder, RSocket, ServerResponder};
use crate::{error::RSocketError, frame::Frame};
use crate::{Error, Result};

pub type FrameSink = dyn Sink<Frame, Error = RSocketError> + Send + Unpin;
pub type FrameStream = dyn Stream<Item = StdResult<Frame, RSocketError>> + Send + Unpin;

pub trait Connection {
    fn split(self) -> (Box<FrameSink>, Box<FrameStream>);
}

#[async_trait]
pub trait Transport {
    type Conn: Connection + Send;

    async fn connect(self) -> Result<Self::Conn>;
}

#[async_trait]
pub trait ServerTransport {
    type Item: Transport;

    async fn start(&mut self) -> Result<()>;

    async fn next(&mut self) -> Option<Result<Self::Item>>;
}