|
|
10 years ago | |
|---|---|---|
| examples | 10 years ago | |
| LICENSE | 10 years ago | |
| README.md | 10 years ago | |
| rx.lua | 10 years ago |
How to use:
local Rx = require 'rx'
local observable = Rx.Observable.create(function(observer)
observer.onNext(42)
end)
observable:subscribe(
function(x)
print('onNext: ' .. x)
end,
function(e)
print('onError: ' .. e)
end,
function()
print('Complete')
end
)
See examples for more details.
firstlastmapreducesumcombineLatestMIT, see LICENSE for details.