11 class RemoteHandlerHandler :
public Handler
14 std::shared_ptr<RemoteHandlerBackend> bkd;
16 virtual void handle_stream_data(std::string, uint8_t *,
size_t) = 0;
19 RemoteHandlerHandler(std::shared_ptr<RemoteHandlerBackend> bkd);
20 ~RemoteHandlerHandler();