summaryrefslogtreecommitdiff
path: root/project2/sql/rdbmsDataSource.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-10-01 21:15:43 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-10-01 21:39:53 +0100
commit5116ce6918721ae244c810a9144ed42e1560ac19 (patch)
tree3c996e45dccbf2000a2c041f7899e8af6bc9ed26 /project2/sql/rdbmsDataSource.cpp
parentMerge Plugable and ComponentLoader into new LifeCycle class (diff)
downloadproject2-5116ce6918721ae244c810a9144ed42e1560ac19.tar.bz2
project2-5116ce6918721ae244c810a9144ed42e1560ac19.tar.xz
project2-5116ce6918721ae244c810a9144ed42e1560ac19.zip
Rename some of the things badly named Loader
Diffstat (limited to 'project2/sql/rdbmsDataSource.cpp')
-rw-r--r--project2/sql/rdbmsDataSource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/sql/rdbmsDataSource.cpp b/project2/sql/rdbmsDataSource.cpp
index aa5bee4..46e97a8 100644
--- a/project2/sql/rdbmsDataSource.cpp
+++ b/project2/sql/rdbmsDataSource.cpp
@@ -7,8 +7,8 @@
#define LOCK(l) std::lock_guard<std::mutex> _lock##l(l)
-/// Specialized ElementLoader for instances of RdbmsDataSource; handles persistent DB connections
-class RdbmsDataSourceLoader : public LifeCycle {
+/// Life cycle component for handling closure of persistent DB connections
+class RdbmsDataSourceFactory : public LifeCycle {
public:
void onIdle() override
{