~singpolyma/sgx-jmp

ref: 9827b8b48336d249637f88d6921d613ad12b16f1 sgx-jmp/lib/roda_em_promise.rb -rw-r--r-- 180 bytes
9827b8b4Stephen Paul Weber Allow finishing adming command 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "em_promise"

module RodaEMPromise
	module RequestMethods
		def block_result(result)
			super(EMPromise.resolve(result).sync)
		end
	end
end