{"id":13624561,"url":"https://github.com/mcxiaoke/RxDocs","last_synced_at":"2025-04-16T00:32:46.024Z","repository":{"id":40643697,"uuid":"39178968","full_name":"mcxiaoke/RxDocs","owner":"mcxiaoke","description":"Rx和RxJava文档中文翻译项目","archived":false,"fork":false,"pushed_at":"2018-04-24T01:51:31.000Z","size":90375,"stargazers_count":3837,"open_issues_count":1,"forks_count":617,"subscribers_count":173,"default_branch":"master","last_synced_at":"2025-04-06T19:09:33.199Z","etag":null,"topics":["android","kotlin","reactivex","rxjava"],"latest_commit_sha":null,"homepage":"http://mcxiaoke.gitbooks.io/rxdocs/content/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mcxiaoke.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-16T05:53:00.000Z","updated_at":"2025-04-06T03:35:46.000Z","dependencies_parsed_at":"2022-09-18T15:21:00.117Z","dependency_job_id":null,"html_url":"https://github.com/mcxiaoke/RxDocs","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcxiaoke%2FRxDocs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcxiaoke%2FRxDocs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcxiaoke%2FRxDocs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcxiaoke%2FRxDocs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcxiaoke","download_url":"https://codeload.github.com/mcxiaoke/RxDocs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248790697,"owners_count":21162073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","kotlin","reactivex","rxjava"],"created_at":"2024-08-01T21:01:43.748Z","updated_at":"2025-04-16T00:32:45.996Z","avatar_url":"https://github.com/mcxiaoke.png","language":null,"readme":"# ReactiveX/RxJava文档中文版\n\n**项目地址：\u003chttps://github.com/mcxiaoke/RxDocs\u003e，欢迎Star和帮忙改进。**\n\n有任何意见或建议，到这里提出 [Create New Issue](https://github.com/mcxiaoke/RxDocs/issues/new)\n\n## 阅读地址\n\n* [ReactiveX文档中文翻译](http://mcxiaoke.gitbooks.io/rxdocs/content/)\n* [PDF/ePub/Mobi格式下载](https://www.gitbook.com/book/mcxiaoke/rxdocs/details)\n\n## 说明\n\n* 大部分是翻译自 [ReactiveX.io](http://reactivex.io/) 和 [RxJava Wiki](https://github.com/ReactiveX/rxjava/wiki)，修正了原文的一些错误，补充了详细的说明和示例\n\n## 版本历史\n\n* 1.0.1 - 2017.07.20 图片链接修正，文本修正\n* 1.0.0 - 2016.11.28 文本修正和润色，感谢@jiefly/@donglua/@cccxm等帮忙完善\n* 0.9.5 - 2016.03.14 文本修正和润色，感谢@htoooth/@AlanCheen/@Ydcool/@loshine/@ppoffice帮忙完善\n* 0.9.0 - 2015.11.25 修正错误和文本润色，感谢@slb1988/@htoooth/@jiyee/@donglua帮忙完善\n* 0.8.0 - 2015.07.27 完成全部文档的初步审校，修正了部分用词不当的地方\n* 0.7.0 - 2015.07.24 完成全部文档的初译，调整了目录的部分链接和文本\n* 0.6.0 - 2015.07.22 完成绝大部分文档的翻译，使用GitBook发布初始版本\n\n## 目录\n\n* [ReactiveX](Intro.md) - 什么是Rx，Rx的理念和优势\n* [Observables](Observables.md) - 简要介绍Observable的观察者模型\n* [Single](Single.md) - 一种特殊的只发射单个值的Observable\n* [Subject](Subject.md) - Observable和Observer的复合体，也是二者的桥梁\n* [Scheduler](Scheduler.md) - 介绍了各种异步任务调度和默认调度器\n* [All Operators List](All-Operators-List.md) - 按字母顺序的全部操作符列表\n* [Operators Categories](Operators.md) - 按目录分类的主要操作符列表\n  * [Creating 创建操作](operators/Creating-Observables.md) - `Create`/`Defer`/`From`/`Just`/`Start`/`Repeat`/`Range`\n  * [Transforming 变换操作](operators/Transforming-Observables.md) - `Buffer`/`Window`/`Map`/`FlatMap`/`GroupBy`/`Scan`\n  * [Filtering 过滤操作](operators/Filtering-Observables.md) - `Debounce`/`Distinct`/`Filter`/`Sample`/`Skip`/`Take`\n  * [Combining 结合操作](operators/Combining-Observables.md) - `And`/`StartWith`/`Join`/`Merge`/`Switch`/`Zip`\n  * [Error Handling 错误处理](operators/Error-Handling-Operators.md) - `Catch`/`Retry`\n  * [Utility 辅助操作](operators/Observable-Utility-Operators.md) - `Delay`/`Do`/`ObserveOn`/`SubscribeOn`/`Subscribe`\n  * [Conditional 条件和布尔操作](operators/Conditional-and-Boolean-Operators.md) - `All`/`Amb`/`Contains`/`SkipUntil`/`TakeUntil`\n  * [Mathematical 算术和聚合操作](operators/Mathematical-and-Aggregate-Operators.md) - `Average`/`Concat`/`Count`/`Max`/`Min`/`Sum`/`Reduce`\n  * [Async 异步操作](operators/Async-Operators.md) - `Start`/`ToAsync`/`StartFuture`/`FromAction`/`FromCallable`/`RunAsync`\n  * [Connect 连接操作](operators/Connectable-Observable-Operators.md) - `Connect`/`Publish`/`RefCount`/`Replay`\n  * [Convert 转换操作](operators/To.md) - `ToFuture`/`ToList`/`ToIterable`/`ToMap`/`toMultiMap`\n  * [Blocking 阻塞操作](operators/Blocking-Observable-Operators.md) - `ForEach`/`First`/`Last`/`MostRecent`/`Next`/`Single`/`Latest`\n  * [String 字符串操作](operators/String-Observables.md) - `ByLine`/`Decode`/`Encode`/`From`/`Join`/`Split`/`StringConcat`\n* [RxJava文档和教程](Topics.md)\n  * [RxJava入门指南](topics/Getting-Started.md)\n  * [RxJava使用示例](topics/How-To-Use-RxJava.md)\n  * [实现自定义操作符](topics/Implementing-Your-Own-Operators.md)\n  * [自定义插件](topics/Plugins.md)\n  * [Backpressure](topics/Backpressure.md)\n  * [错误处理](topics/Error-Handling.md)\n  * [Android模块](topics/The-RxJava-Android-Module.md)\n  * [参与开发](topics/How-to-Contribute.md)\n  * [补充阅读材料](topics/Additional-Reading.md)\n\n\n## 链接\n\n* [ReactiveX.io](http://reactivex.io/intro.html)\n* [RxJava Wiki](https://github.com/ReactiveX/RxJava/wiki)\n* [RxJava Javadoc](http://reactivex.io/RxJava/javadoc/)\n* [RxMarbles](http://rxmarbles.com/)\n* [Advanced RxJava](http://akarnokd.blogspot.com/)\n* [Intro to Rx](http://www.introtorx.com/content/v1.0.10621.0/01_WhyRx.html)\n* [MSDN](https://msdn.microsoft.com/en-us/data/gg577609.aspx)\n\n\n------\n\n## 许可协议\n\n- [署名-非商业性使用-相同方式共享 4.0 国际](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode)\n\n------\n\n## 联系方式\n\n* Blog: \u003chttp://blog.mcxiaoke.com\u003e\n* Github: \u003chttps://github.com/mcxiaoke\u003e\n* Email: [github@mcxiaoke.com](mailto:github#mcxiaoke.com)\n\n## 开源项目\n\n* Rx文档中文翻译: \u003chttps://github.com/mcxiaoke/RxDocs\u003e\n* MQTT协议中文版: \u003chttps://github.com/mcxiaoke/mqtt\u003e\n* Awesome-Kotlin: \u003chttps://github.com/mcxiaoke/awesome-kotlin\u003e\n* Kotlin-Koi: \u003chttps://github.com/mcxiaoke/kotlin-koi\u003e\n* Next公共组件库: \u003chttps://github.com/mcxiaoke/Android-Next\u003e\n* PackerNg极速打包: \u003chttps://github.com/mcxiaoke/packer-ng-plugin\u003e\n* Gradle渠道打包: \u003chttps://github.com/mcxiaoke/gradle-packer-plugin\u003e\n* EventBus实现xBus: \u003chttps://github.com/mcxiaoke/xBus\u003e\n* 蘑菇饭App: \u003chttps://github.com/mcxiaoke/minicat\u003e\n* 饭否客户端: \u003chttps://github.com/mcxiaoke/fanfouapp-opensource\u003e\n* Volley镜像: \u003chttps://github.com/mcxiaoke/android-volley\u003e\n\n------\n","funding_links":[],"categories":["Others","分类","Others (1002)"],"sub_categories":["Rx/RxJava"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcxiaoke%2FRxDocs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcxiaoke%2FRxDocs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcxiaoke%2FRxDocs/lists"}