wrapper pump class

This commit is contained in:
keldu.magnus 2021-09-01 12:37:54 +02:00
parent ebcf63ad97
commit aff0c8424c
1 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@
namespace gin {
template <typename Codec, typename Incoming, typename Outgoing>
template<typename Codec, typename Incoming, typename Outgoing>
class StreamingIoPeer {
private:
Codec codec;
@ -13,7 +13,6 @@ private:
Own<AsyncIoStream> io_stream;
Own<ConveyorFeeder<Incoming>> incoming_feeder = nullptr;
public:
StreamingIoPeer(Own<AsyncIoStream> stream);
@ -22,4 +21,6 @@ public:
Conveyor<Incoming> startReadPump();
};
} // namespace gin
}