@@ -18,7 +18,7 @@ public class BatchManager
18
18
{
19
19
readonly ConcurrentBag < object > events ;
20
20
readonly uint batchSizeCount ;
21
- readonly uint batchIntervalInMiliseconds ;
21
+ readonly uint batchIntervalInMilliseconds ;
22
22
readonly Timer timer ;
23
23
readonly Action < List < object > > emitAction ;
24
24
@@ -29,17 +29,17 @@ public class BatchManager
29
29
/// Initializes a new instance of the <see cref="T:Splunk.BatchManager"/> class.
30
30
/// </summary>
31
31
/// <param name="batchSizeCount">Batch size count.</param>
32
- /// <param name="batchIntervalInMiliseconds ">Batch interval in miliseconds .</param>
32
+ /// <param name="batchIntervalInMilliseconds ">Batch interval in milliseconds .</param>
33
33
/// <param name="emitAction">Emit action to be invoked at Emit process.</param>
34
- public BatchManager ( uint batchSizeCount , uint batchIntervalInMiliseconds , Action < List < object > > emitAction )
34
+ public BatchManager ( uint batchSizeCount , uint batchIntervalInMilliseconds , Action < List < object > > emitAction )
35
35
{
36
36
events = new ConcurrentBag < object > ( ) ;
37
37
this . batchSizeCount = batchSizeCount ;
38
- this . batchIntervalInMiliseconds = batchIntervalInMiliseconds ;
38
+ this . batchIntervalInMilliseconds = batchIntervalInMilliseconds ;
39
39
40
- if ( batchIntervalInMiliseconds > 0 )
40
+ if ( batchIntervalInMilliseconds > 0 )
41
41
{
42
- timer = new Timer ( batchIntervalInMiliseconds ) ;
42
+ timer = new Timer ( batchIntervalInMilliseconds ) ;
43
43
timer . AutoReset = false ;
44
44
timer . Enabled = true ;
45
45
timer . Elapsed += TimerTick ;
0 commit comments