/* * DEBUG: section 16 Cache Manager API * */ #include "squid.h" #include "base/TextException.h" #include "comm/Connection.h" #include "mgr/Filler.h" #include "mgr/Response.h" #include "Store.h" CBDATA_NAMESPACED_CLASS_INIT(Mgr, Filler); Mgr::Filler::Filler(const Action::Pointer &anAction, const Comm::ConnectionPointer &conn, unsigned int aRequestId): StoreToCommWriter(conn, anAction->createStoreEntry()), action(anAction), requestId(aRequestId) { debugs(16, 5, HERE << conn << " action: " << action); } void Mgr::Filler::start() { debugs(16, 5, HERE); Must(requestId != 0); Must(action != NULL); StoreToCommWriter::start(); action->run(entry, false); } void Mgr::Filler::swanSong() { debugs(16, 5, HERE); action->sendResponse(requestId); StoreToCommWriter::swanSong(); }