Skip to content

Commit 3cc82f3

Browse files
committed
Docs: Added links to RxJava and Reactive Streams docs
JAVA-2519
1 parent 049892b commit 3cc82f3

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

docs/reference/content/driver-async/getting-started/quick-start.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ title = "Quick Start"
1313
The following code snippets come from the [`QuickTour.java`]({{< srcref "driver-async/src/examples/tour/QuickTour.java">}}) example code
1414
that can be found with the async driver source on github.
1515

16+
{{% note %}}
17+
There are two higher level MongoDB Asynchronous Java Drivers available, that users may find easier to work with due to their friendlier APIs:
18+
19+
* [MongoDB RxJava Driver](http://mongodb.github.io/mongo-java-driver-rx/) An RxJava implementation of the MongoDB Driver.
20+
* [MongoDB Reactive Streams Java Driver](http://mongodb.github.io/mongo-java-driver-reactivestreams/) A Reactive Streams implementation for the JVM.
21+
{{% /note %}}
22+
1623
## SingleResultCallback
1724

1825
The MongoDB Async driver provides an asynchronous API that can leverage either Netty or Java 7's `AsynchronousSocketChannel` for fast and non-blocking I/O.

docs/reference/content/driver-async/index.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
+++
22
date = "2015-03-17T15:36:56Z"
33
title = "MongoDB Async Driver"
4-
type = "index"
54
[menu.main]
65
weight = 30
76
identifier = "MongoDB Async Driver"
@@ -10,16 +9,20 @@ type = "index"
109

1110
## MongoDB Async Java Driver Documentation
1211

13-
The following guide provides information on using the
14-
MongoDB Async Java Driver 3.4.
12+
The following guide provides information on using the callback based MongoDB Async Java Driver 3.4.
13+
14+
{{% note %}}
15+
There are two higher level MongoDB Asynchronous Java Drivers available, that users may find easier to work with due to their friendlier APIs:
16+
17+
* [MongoDB RxJava Driver](http://mongodb.github.io/mongo-java-driver-rx/) An RxJava implementation of the MongoDB Driver.
18+
* [MongoDB Reactive Streams Java Driver](http://mongodb.github.io/mongo-java-driver-reactivestreams/) A Reactive Streams implementation for the JVM.
19+
{{% /note %}}
1520

1621
### What's New in 3.4
1722

18-
The [What's New]({{< relref "whats-new.md" >}}) guide explains
19-
the major new features of the driver.
23+
The [What's New]({{< relref "whats-new.md" >}}) guide explains the major new features of the driver.
2024

21-
If you are upgrading from the 2.x series of the driver, consult the
22-
[Upgrading]({{< relref "upgrading.md" >}}) documentation for
25+
If you are upgrading from the 2.x series of the driver, consult the [Upgrading]({{< relref "upgrading.md" >}}) documentation for
2326
information on breaking changes.
2427

2528
## Getting Started

0 commit comments

Comments
 (0)