Class: Segment::Analytics::Client
- Inherits:
-
Object
- Object
- Segment::Analytics::Client
- Defined in:
- lib/segment/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).
-
#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.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/segment/analytics/client.rb', line 22 def initialize(opts = {}) symbolize_keys!(opts) @queue = Queue.new @write_key = opts[:write_key] @data_plane_url = opts[:data_plane_url] @max_queue_size = opts[:max_queue_size] || Defaults::Queue::MAX_SIZE @worker_mutex = Mutex.new @worker = Worker.new(@queue, @data_plane_url, @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
98 99 100 101 |
# File 'lib/segment/analytics/client.rb', line 98 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
42 43 44 45 46 47 |
# File 'lib/segment/analytics/client.rb', line 42 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.
112 113 114 115 |
# File 'lib/segment/analytics/client.rb', line 112 def group(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_group(attrs)) end |
#identify(attrs) ⇒ Object
Identifies a user
85 86 87 88 |
# File 'lib/segment/analytics/client.rb', line 85 def identify(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_identify(attrs)) end |
#page(attrs) ⇒ Object
Records a page view
126 127 128 129 |
# File 'lib/segment/analytics/client.rb', line 126 def page(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_page(attrs)) end |
#queued_messages ⇒ Fixnum
Returns number of messages in the queue.
145 146 147 |
# File 'lib/segment/analytics/client.rb', line 145 def @queue.length end |
#screen(attrs) ⇒ Object
Records a screen view (for a mobile app)
139 140 141 142 |
# File 'lib/segment/analytics/client.rb', line 139 def screen(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_screen(attrs)) end |
#track(attrs) ⇒ Object
Tracks an event
72 73 74 75 |
# File 'lib/segment/analytics/client.rb', line 72 def track(attrs) symbolize_keys! attrs enqueue(FieldParser.parse_for_track(attrs)) end |