Winszheng / rxgo

a go reactiveX implementation ref http://reactivex.io/documentation/observable.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

补充、修改RxGo

Getting started:Hello World

The Hello World program:

package main

import (
	"fmt"
	RxGo "github.com/Winszheng/rxgo"
)

func main() {
	RxGo.Just("Hello", "World", "!").Subscribe(func(x string) {
		fmt.Println(x)
	})
}

output:

Hello
World
!

文档

https://godoc.org/github.com/Winszheng/rxgo

设计说明文档

[specification.md

实现文件

filter.go

测试文件

filter_test.go

About

a go reactiveX implementation ref http://reactivex.io/documentation/observable.html

License:BSD 2-Clause "Simplified" License


Languages

Language:Go 100.0%