]>
git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/ActionWriter.cc
739471cadc9eb50d01c756f38673eb0a2a1e7db8
4 * DEBUG: section 16 Cache Manager API
9 #include "base/TextException.h"
10 #include "comm/Connection.h"
11 #include "mgr/ActionWriter.h"
15 CBDATA_NAMESPACED_CLASS_INIT(Mgr
, ActionWriter
);
17 Mgr::ActionWriter::ActionWriter(const Action::Pointer
&anAction
, const Comm::ConnectionPointer
&conn
):
18 StoreToCommWriter(conn
, anAction
->createStoreEntry()),
21 debugs(16, 5, HERE
<< conn
<< " action: " << action
);
25 Mgr::ActionWriter::start()
30 StoreToCommWriter::start();
31 action
->fillEntry(entry
, false);