Class: Tuile::EventQueue::Ticker

Inherits:
Object
  • Object
show all
Defined in:
lib/tuile/event_queue.rb,
sig/tuile.rbs

Overview

Handle returned by #tick. Cancel a running ticker via #cancel.

Internally wraps a Concurrent::TimerTask whose firing posts a single submit-block to the owning Tuile::EventQueue; the user's block therefore always runs on the event-loop thread and may freely mutate UI. If the user block raises, the Ticker auto-cancels and the exception is re-raised so it flows through the loop's normal error handling (Screen#on_error for the default Tuile setup).

Instance Method Summary collapse

Constructor Details

#initialize(event_queue, interval, block) ⇒ Ticker

@param event_queue — queue to dispatch tick calls onto.

@param interval — seconds between firings (positive).

@param block — called as block.call(tick_count) on each fire.

Parameters:

  • event_queue (EventQueue)
  • interval (Numeric)
  • block (Proc)


253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/tuile/event_queue.rb', line 253

def initialize(event_queue, interval, block)
  @event_queue = event_queue
  @block = block
  @tick = 0
  # AtomicBoolean rather than a plain ivar: cancel may run on any
  # thread (caller code, the event-loop thread from inside the block,
  # or the IO executor on an error path), and we want both a CAS-style
  # one-shot guard against double-shutdown and well-defined visibility
  # on non-MRI Rubies.
  @cancelled = Concurrent::AtomicBoolean.new(false)
  @timer = Concurrent::TimerTask.new(execution_interval: interval) do
    @event_queue.submit { fire }
  end
  @timer.execute
end

Instance Method Details

#cancelvoid

This method returns an undefined value.

Stops the ticker. Idempotent and safe to call from any thread, including from inside the tick block. Any tick already queued on the event loop at the moment of cancellation is dropped before the user block runs.



277
278
279
280
281
# File 'lib/tuile/event_queue.rb', line 277

def cancel
  return unless @cancelled.make_true # CAS: only the winner shuts down

  @timer.shutdown
end

#cancelled?Boolean

@return — true once #cancel has been called.

Returns:

  • (Boolean)


270
# File 'lib/tuile/event_queue.rb', line 270

def cancelled? = @cancelled.true?

#firevoid

This method returns an undefined value.

Runs on the event-loop thread.



287
288
289
290
291
292
293
294
295
# File 'lib/tuile/event_queue.rb', line 287

def fire
  return if @cancelled.true?

  @block.call(@tick)
  @tick += 1
rescue StandardError
  cancel
  raise
end