9#ifndef SQUID_SRC_PIPELINE_H
10#define SQUID_SRC_PIPELINE_H
bool empty() const
whether there are none or any requests currently pipelined
size_t count() const
how many requests are currently pipelined
Http::StreamPointer front() const
get the first request context in the pipeline
Pipeline & operator=(const Pipeline &)=delete
void add(const Http::StreamPointer &)
register a new request context to the pipeline
void popMe(const Http::StreamPointer &)
deregister the front request from the pipeline
Http::StreamPointer back() const
get the last request context in the pipeline
std::list< Http::StreamPointer > requests
requests parsed from the connection but not yet completed.
Pipeline(const Pipeline &)=delete