Class: June::Analytics::Client
- Inherits:
-
Object
- Object
- June::Analytics::Client
- Defined in:
- lib/june/analytics/client.rb
Constant Summary
Constants included from Utils
Utils::UTC_OFFSET_WITHOUT_COLON, Utils::UTC_OFFSET_WITH_COLON
Instance Method Summary collapse
-
#alias(attrs) ⇒ Object
Aliases a user from one id to another.
-
#flush ⇒ Object
Synchronously waits until the worker has flushed the queue.
-
#group(attrs) ⇒ Object
Associates a user identity with a group.
-
#identify(attrs) ⇒ Object
Identifies a user.
-
#initialize(opts = {}) ⇒ Client
constructor
A new instance of Client.
-
#page(attrs) ⇒ Object
Records a page view.
-
#queued_messages ⇒ Fixnum
Number of messages in the queue.
-
#screen(attrs) ⇒ Object
Records a screen view (for a mobile app).
- #test_queue ⇒ Object
-
#track(attrs) ⇒ Object
Tracks an event.
Methods included from Logging
Methods included from Utils
#date_in_iso8601, #datetime_in_iso8601, #formatted_offset, #isoify_dates, #isoify_dates!, #seconds_to_utc_offset, #stringify_keys, #symbolize_keys, #symbolize_keys!, #time_in_iso8601, #uid
Constructor Details
#initialize(opts = {}) ⇒ Client
Returns a new instance of Client.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/june/analytics/client.rb', line 20 def initialize(opts = {}) symbolize_keys!(opts) @queue = Queue.new @test = opts[:test] @write_key = opts[:write_key] @max_queue_size = opts[:max_queue_size] || Defaults::Queue::MAX_SIZE @worker_mutex = Mutex.new @worker = Worker.new(@queue, @write_key, opts) @worker_thread = nil check_write_key! at_exit { @worker_thread && @worker_thread[:should_exit] = true } end |
Instance Method Details
#alias(attrs) ⇒ Object
Aliases a user from one id to another
96 97 98 99 |
# File 'lib/june/analytics/client.rb', line 96 def alias(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_alias(attrs)) end |
#flush ⇒ Object
Synchronously waits until the worker has flushed the queue.
Use only for scripts which are not long-running, and will specifically exit
40 41 42 43 44 45 |
# File 'lib/june/analytics/client.rb', line 40 def flush while !@queue.empty? || @worker.is_requesting? ensure_worker_running sleep(0.1) end end |
#group(attrs) ⇒ Object
Associates a user identity with a group.
110 111 112 113 |
# File 'lib/june/analytics/client.rb', line 110 def group(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_group(attrs)) end |
#identify(attrs) ⇒ Object
Identifies a user
83 84 85 86 |
# File 'lib/june/analytics/client.rb', line 83 def identify(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_identify(attrs)) end |
#page(attrs) ⇒ Object
Records a page view
124 125 126 127 |
# File 'lib/june/analytics/client.rb', line 124 def page(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_page(attrs)) end |
#queued_messages ⇒ Fixnum
Returns number of messages in the queue.
143 144 145 |
# File 'lib/june/analytics/client.rb', line 143 def @queue.length end |
#screen(attrs) ⇒ Object
Records a screen view (for a mobile app)
137 138 139 140 |
# File 'lib/june/analytics/client.rb', line 137 def screen(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_screen(attrs)) end |
#test_queue ⇒ Object
147 148 149 150 151 152 153 |
# File 'lib/june/analytics/client.rb', line 147 def test_queue unless @test raise 'Test queue only available when setting :test to true.' end @test_queue ||= TestQueue.new end |
#track(attrs) ⇒ Object
Tracks an event
70 71 72 73 |
# File 'lib/june/analytics/client.rb', line 70 def track(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_track(attrs)) end |