ActionWriter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* DEBUG: section 16 Cache Manager API */
10 
11 #ifndef SQUID_SRC_MGR_ACTIONWRITER_H
12 #define SQUID_SRC_MGR_ACTIONWRITER_H
13 
14 #include "comm/forward.h"
15 #include "mgr/StoreToCommWriter.h"
16 
17 namespace Mgr
18 {
19 
23 {
25 
26 public:
27  ActionWriter(const Action::Pointer &anAction, const Comm::ConnectionPointer &conn);
28 
29 protected:
30  /* AsyncJob API */
31  void start() override;
32 
33 private:
35 };
36 
37 } // namespace Mgr
38 
39 #endif /* SQUID_SRC_MGR_ACTIONWRITER_H */
40 
CBDATA_CHILD(ActionWriter)
void start() override
called by AsyncStart; do not call directly
Definition: ActionWriter.cc:27
ActionWriter(const Action::Pointer &anAction, const Comm::ConnectionPointer &conn)
Definition: ActionWriter.cc:19
Action::Pointer action
action that fills the entry
Definition: ActionWriter.h:34
Cache Manager API.
Definition: Action.h:20

 

Introduction

Documentation

Support

Miscellaneous