]> git.ipfire.org Git - thirdparty/squid.git/blob - src/DiskIO/IpcIo/IpcIoIOStrategy.h
SMP Caching: Core changes, IPC primitives, Shared memory cache, and Rock Store
[thirdparty/squid.git] / src / DiskIO / IpcIo / IpcIoIOStrategy.h
1 #ifndef SQUID_IPC_IOIOSTRATEGY_H
2 #define SQUID_IPC_IOIOSTRATEGY_H
3 #include "DiskIO/DiskIOStrategy.h"
4
5 class IpcIoIOStrategy : public DiskIOStrategy
6 {
7
8 public:
9 virtual bool shedLoad();
10 virtual int load();
11 virtual RefCount<DiskFile> newFile(char const *path);
12 virtual void unlinkFile (char const *);
13 };
14
15 #endif /* SQUID_IPC_IOIOSTRATEGY_H */