Method: Jscall.async

Defined in:
lib/jscall.rb

.asyncObject



508
509
510
511
512
513
514
515
516
# File 'lib/jscall.rb', line 508

def self.async
    @async ||= Class.new do
        def __getpipe__
            Jscall.__getpipe__
        end

        include AsyncInterface
    end.new
end