Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
7aa66a81
Commit
7aa66a81
authored
Jul 21, 2020
by
Michael Ott
Browse files
Initialize _queueSize properly in OperatorInterface
parent
ed6633f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
analytics/includes/OperatorInterface.h
View file @
7aa66a81
...
@@ -90,6 +90,7 @@ public:
...
@@ -90,6 +90,7 @@ public:
_keepRunning
(
0
),
_keepRunning
(
0
),
_minValues
(
1
),
_minValues
(
1
),
_interval
(
1000
),
_interval
(
1000
),
_queueSize
(
1024
),
_cacheInterval
(
900000
),
_cacheInterval
(
900000
),
_unitCacheLimit
(
1000
),
_unitCacheLimit
(
1000
),
_cacheSize
(
1
),
_cacheSize
(
1
),
...
@@ -116,6 +117,7 @@ public:
...
@@ -116,6 +117,7 @@ public:
_keepRunning
(
other
.
_keepRunning
),
_keepRunning
(
other
.
_keepRunning
),
_minValues
(
other
.
_minValues
),
_minValues
(
other
.
_minValues
),
_interval
(
other
.
_interval
),
_interval
(
other
.
_interval
),
_queueSize
(
other
.
_queueSize
),
_cacheInterval
(
other
.
_cacheInterval
),
_cacheInterval
(
other
.
_cacheInterval
),
_unitCacheLimit
(
other
.
_unitCacheLimit
),
_unitCacheLimit
(
other
.
_unitCacheLimit
),
_cacheSize
(
other
.
_cacheSize
),
_cacheSize
(
other
.
_cacheSize
),
...
@@ -148,6 +150,7 @@ public:
...
@@ -148,6 +150,7 @@ public:
_minValues
=
other
.
_minValues
;
_minValues
=
other
.
_minValues
;
_interval
=
other
.
_interval
;
_interval
=
other
.
_interval
;
_cacheInterval
=
other
.
_cacheInterval
;
_cacheInterval
=
other
.
_cacheInterval
;
_queueSize
=
other
.
_queueSize
;
_unitCacheLimit
=
other
.
_unitCacheLimit
;
_unitCacheLimit
=
other
.
_unitCacheLimit
;
_cacheSize
=
other
.
_cacheSize
;
_cacheSize
=
other
.
_cacheSize
;
_delayInterval
=
other
.
_delayInterval
;
_delayInterval
=
other
.
_delayInterval
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment