Class: Roda::RodaPlugins::Streaming::Stream::Scheduler

Inherits:
Object
  • Object
show all
Defined in:
lib/roda/plugins/streaming.rb

Overview

The default scheduler to used when streaming, useful for code using ruby’s default threading support.

Instance Method Summary collapse

Constructor Details

#initialize(stream) ⇒ Scheduler

Store the stream to schedule.



73
74
75
# File 'lib/roda/plugins/streaming.rb', line 73

def initialize(stream)
  @stream = stream
end

Instance Method Details

#deferObject

Immediately yield.



78
79
80
# File 'lib/roda/plugins/streaming.rb', line 78

def defer(*)
  yield
end

#scheduleObject

Close the stream if there is an exception when scheduling, and reraise the exception if so.



84
85
86
87
88
89
# File 'lib/roda/plugins/streaming.rb', line 84

def schedule(*)
  yield
rescue Exception
  @stream.close
  raise
end