MongoDB RxJava Driver

An RxJava implementation of the MongoDB Driver

Latest documentation

The MongoDB Java RX driver is now officially end-of-life (EOL). No further developments, bugfixes, enhancements, scaladoc changes, maintenance will be provided by this project.

Users are encouraged to migrate to the MongoDB Reactive Streams Java Driver.

Introduction

The official MongoDB Rx Java Driver, providing composable asynchronous and event-based observable sequences for MongoDB.

A MongoDB based driver providing support for ReactiveX (Reactive Extensions) by using the RxJava library. All database calls return an Observable allowing for efficient execution, concise code, and functional composition of results.

Quick Start

The recommended way to get started is with a dependency management system. Select the version and dependency management system below and the snippet can be copied and pasted into your build.

Alternatively, head over to our documentation to learn more about getting started with Java, RxJava, and MongoDB.

mongodb-driver-rx

<dependencies>
    <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongodb-driver-rx</artifactId>
        <version>1.5.0</version>
    </dependency>
</dependencies>

Releases

ReleaseDocumentation
1.5.0 Reference | API
1.4.0 Reference | API
1.3.1 Reference | API
1.2.0 Reference | API
1.1.0 Reference | API
1.0.1 Reference | API

MongoDB University

M101J: MongoDB for Java Developers

Learn everything you need to know to get started building a MongoDB-based app. From basic installation, JSON, schema design, querying, insertion of data, indexing and working with the Java driver.

Learn More