flv-future-aio 1.1.0

I/O futures for Fluvio project

use futures::Stream;

use crate::fs::AsyncFile;

pub struct AsyncFileStream {
    file: AsyncFile
}

impl AsyncFileStream {
    pub fn new(file: AsyncFile) -> Self {
        Self {
            file
        }
    }
}


impl Stream for AsyncFileStream {

    fn poll_next(self: Pin<&mut Self>, lw: &Waker) -> Poll<Option<Self::Item>> {
        
    }

}