KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
RxJRuby
★ 37
Open GitHub ↗
RxJava bindings for JRuby
Download README (.md)
Explore Similar Repositories
react-complete-me
:
React autocompletion powered by ElasticSearch. So easy your mom can do it.
Gravity-Forms-Multiple-Form-Instances
:
Allows multiple instances of the same form to be run on a single page when using AJAX.
entity-system-benchmarks
:
microbenchmarks comparing ECS (entity component system) frameworks for java
IRelectra
:
Electra A/C IR Encoder for IRremote
php-di-container-examples
:
介紹 PHP 中 Dependency Injection Container 的實作原理
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
RxJRuby
?
Download (.md)
# JRuby Adaptor for RxJava This adaptor improves the success and performance of RxJava when Ruby `Proc` is passed to an RxJava method. This enables correct and efficient execution of code such as: ```ruby Observable.from("one", "two", "three"). take(2). subscribe {|val| puts val} ``` # Usage Require the JAR file as usual. After requiring the JAR, you must also require the interop code: ```ruby require "rx/lang/jruby/interop" ``` # Binaries Binaries and dependency information for Maven, Ivy, Gradle and others can be found at [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22rxjava-jruby%22). Example for Maven: ```xml <dependency> <groupId>com.netflix.rxjava</groupId> <artifactId>rxjava-jruby</artifactId> <version>x.y.z</version> </dependency> ``` and for Ivy: ```xml <dependency org="com.netflix.rxjava" name="rxjava-jruby" rev="x.y.z" /> ``` and for Gradle: ```groovy compile 'com.netflix.rxjava:rxjava-jruby:x.y.z' ```