summaryrefslogtreecommitdiffstats
path: root/include/framework/scheduling/Epoch.h
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-22 13:00:19 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-22 13:00:19 -0500
commit5617bed5257506d3dfda8537b16f44b3e40f1b42 (patch)
treeb1a4bb957929b20c884a4eed070f42065828fdb6 /include/framework/scheduling/Epoch.h
parent9876d74e503df64eb9e82e540ca41fcf593ebf64 (diff)
downloaddynamic-extension-5617bed5257506d3dfda8537b16f44b3e40f1b42.tar.gz
Began overhauling reconstruction mechanism
Diffstat (limited to 'include/framework/scheduling/Epoch.h')
-rw-r--r--include/framework/scheduling/Epoch.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/framework/scheduling/Epoch.h b/include/framework/scheduling/Epoch.h
index 03675b1..303ab2f 100644
--- a/include/framework/scheduling/Epoch.h
+++ b/include/framework/scheduling/Epoch.h
@@ -8,7 +8,6 @@
*/
#pragma once
-#include <condition_variable>
#include <mutex>
#include "framework/structure/BufferView.h"
@@ -17,13 +16,12 @@
namespace de {
-template <ShardInterface ShardType, QueryInterface<ShardType> QueryType,
- LayoutPolicy L>
+template <ShardInterface ShardType, QueryInterface<ShardType> QueryType>
class Epoch {
private:
typedef typename ShardType::RECORD RecordType;
typedef MutableBuffer<RecordType> Buffer;
- typedef ExtensionStructure<ShardType, QueryType, L> Structure;
+ typedef ExtensionStructure<ShardType, QueryType> Structure;
typedef BufferView<RecordType> BufView;
public: