Class: GraphQL::Hive::UsageReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql-hive/usage_reporter.rb

Overview

Report usage to Hive API without impacting application performances

Constant Summary collapse

@@instance =
nil

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options, client) ⇒ UsageReporter

Returns a new instance of UsageReporter.



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/graphql-hive/usage_reporter.rb', line 22

def initialize(options, client)
  @@instance = self

  @options = options
  @client = client

  @options_mutex = Mutex.new
  @queue = Queue.new

  start_thread
end

Class Method Details

.instanceObject



18
19
20
# File 'lib/graphql-hive/usage_reporter.rb', line 18

def self.instance
  @@instance
end

Instance Method Details

#add_operation(operation) ⇒ Object



34
35
36
# File 'lib/graphql-hive/usage_reporter.rb', line 34

def add_operation(operation)
  @queue.push(operation)
end

#on_exitObject



38
39
40
41
# File 'lib/graphql-hive/usage_reporter.rb', line 38

def on_exit
  @queue.close
  @thread.join
end

#on_startObject



43
44
45
# File 'lib/graphql-hive/usage_reporter.rb', line 43

def on_start
  start_thread
end