summaryrefslogtreecommitdiff
path: root/lib/gitlab/sherlock/collection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/sherlock/collection.rb')
-rw-r--r--lib/gitlab/sherlock/collection.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/gitlab/sherlock/collection.rb b/lib/gitlab/sherlock/collection.rb
index accdc6469bc..66bd6258521 100644
--- a/lib/gitlab/sherlock/collection.rb
+++ b/lib/gitlab/sherlock/collection.rb
@@ -1,5 +1,10 @@
module Gitlab
module Sherlock
+ # A collection of transactions recorded by Sherlock.
+ #
+ # Method calls for this class are synchronized using a mutex to allow
+ # sharing of a single Collection instance between threads (e.g. when using
+ # Puma as a webserver).
class Collection
include Enumerable
@@ -34,6 +39,8 @@ module Gitlab
sort { |a, b| b.finished_at <=> a.finished_at }
end
+ private
+
def synchronize(&block)
@mutex.synchronize(&block)
end