Squid Web Cache master
Loading...
Searching...
No Matches
DelayPool.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 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 77 Delay Pools */
10
11#ifndef SQUID_SRC_DELAYPOOL_H
12#define SQUID_SRC_DELAYPOOL_H
13
14#if USE_DELAY_POOLS
15#include "acl/forward.h"
16#include "CompositePoolNode.h"
17
18class StoreEntry;
19
20class CommonPool;
21
24{
25
26public:
27 DelayPool();
28 ~DelayPool();
29 void freeData();
30 void createPool(u_char delay_class);
31 void parse();
32 void dump (StoreEntry *, unsigned int poolNumberMinusOne) const;
35
37
39
40private:
42};
43
44#endif /* USE_DELAY_POOLS */
45#endif /* SQUID_SRC_DELAYPOOL_H */
46
void parse()
Definition DelayPool.cc:35
acl_access * access
Definition DelayPool.h:38
CompositePoolNode::Pointer theComposite()
Definition DelayPool.h:34
void dump(StoreEntry *, unsigned int poolNumberMinusOne) const
Definition DelayPool.cc:42
CompositePoolNode::Pointer const theComposite() const
Definition DelayPool.h:36
CommonPool * pool
Definition DelayPool.h:33
CompositePoolNode::Pointer theComposite_
Definition DelayPool.h:41
void freeData()
Definition DelayPool.cc:72
void createPool(u_char delay_class)
Definition DelayPool.cc:63