diff options
| author | Per Larsson <[email protected]> | 2021-09-21 16:26:49 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-21 16:26:49 +0200 |
| commit | 59f9ff769353b7e6e905e610c1579e06e7a2a849 (patch) | |
| tree | 38d317cd02a75dd64da90d090b477bc5d0b3aa24 /zenserver/cache/structuredcache.h | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-59f9ff769353b7e6e905e610c1579e06e7a2a849.tar.xz zen-59f9ff769353b7e6e905e610c1579e06e7a2a849.zip | |
Refactored get/set cache pyload.
Diffstat (limited to 'zenserver/cache/structuredcache.h')
| -rw-r--r-- | zenserver/cache/structuredcache.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zenserver/cache/structuredcache.h b/zenserver/cache/structuredcache.h index edf011ae4..3fdaa1236 100644 --- a/zenserver/cache/structuredcache.h +++ b/zenserver/cache/structuredcache.h @@ -74,7 +74,9 @@ private: void HandleCacheRecordRequest(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandleGetCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandlePutCacheRecord(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); - void HandleCachePayloadRequest(zen::HttpServerRequest& Request, CacheRef& Ref, CachePolicy Policy); + void HandleCachePayloadRequest(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); + void HandleGetCachePayload(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); + void HandlePutCachePayload(zen::HttpServerRequest& Request, const CacheRef& Ref, CachePolicy Policy); void HandleCacheBucketRequest(zen::HttpServerRequest& Request, std::string_view Bucket); spdlog::logger& Log() { return m_Log; } |