#include <min.h>
Inherits Sink< Frame >.
Public Member Functions | |
| Out (Sink< Buffer< uint8_t > > &to) | |
| create Buffer stream wrapper | |
| bool | full () override |
| check if sink is full | |
| void | push (Frame &&f) override |
| push Frame through to underlying Buffer stream | |
| virtual void | push (const Frame &t) |
| copy semantics does not check for space. guard by using 'if (!full) { ... }' | |
| void | trypush (Frame &&t) |
| use this if you don't care if it's going to be successful. data gets discarded if sink is full. | |