ReactiveX/RxRuby

View on GitHub
lib/rx/linq/observable/start.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rx
  class << Observable
    def start(func, context, scheduler = DefaultScheduler.instance)
      Observable.to_async(func, context, scheduler).call
    end
  end
end