aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h')
-rw-r--r--searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h b/searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h
deleted file mode 100644
index 4743367b426..00000000000
--- a/searchcore/src/apps/vespa-feed-bm/storage_reply_error_checker.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-#include <atomic>
-
-namespace storage::api { class StorageMessage; }
-
-namespace feedbm {
-
-class StorageReplyErrorChecker {
-protected:
- std::atomic<uint32_t> _errors;
-public:
- StorageReplyErrorChecker();
- ~StorageReplyErrorChecker();
- void check_error(const storage::api::StorageMessage &msg);
- uint32_t get_error_count() const { return _errors; }
-};
-
-}