summaryrefslogtreecommitdiffstats
path: root/common/query.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-09-26 14:19:44 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-09-26 14:19:44 +0200
commit47b9f2109f57c1121b760ea6d885ab08f12c46b3 (patch)
treec65e57788d5fda221a9369353bb469cbd6a066c3 /common/query.h
parentbe8dba1827ec54ec11d9a3ef143db9ad7f7f38df (diff)
downloadsink-47b9f2109f57c1121b760ea6d885ab08f12c46b3.tar.gz
sink-47b9f2109f57c1121b760ea6d885ab08f12c46b3.zip
Blooming
Diffstat (limited to 'common/query.h')
-rw-r--r--common/query.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/query.h b/common/query.h
index 0808432..1b909e5 100644
--- a/common/query.h
+++ b/common/query.h
@@ -195,13 +195,13 @@ public:
195 return *this; 195 return *this;
196 } 196 }
197 197
198 Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) 198 Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false), bloomThread(false)
199 { 199 {
200 ids << value.identifier(); 200 ids << value.identifier();
201 resources << value.resourceInstanceIdentifier(); 201 resources << value.resourceInstanceIdentifier();
202 } 202 }
203 203
204 Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) 204 Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false), bloomThread(false)
205 { 205 {
206 } 206 }
207 207
@@ -237,6 +237,7 @@ public:
237 bool liveQuery; 237 bool liveQuery;
238 bool synchronousQuery; 238 bool synchronousQuery;
239 bool threadLeaderOnly; 239 bool threadLeaderOnly;
240 bool bloomThread;
240}; 241};
241} 242}
242 243