| Package | Description |
|---|---|
| com.allanbank.mongodb |
Provides a Java driver for the MongoDB document store that allows asynchronous invocation of requests.
|
| com.allanbank.mongodb.builder |
Provides domain classes and builders for queries and the common MongoDB commands.
|
| com.allanbank.mongodb.client |
Provides implementations of the main client interfaces and classes to translate the
Reply(s) from the server. |
| Modifier and Type | Method and Description |
|---|---|
long |
MongoCollection.count(Count count)
Counts the set of documents matching the query document in the
collection.
|
void |
AsyncMongoCollection.countAsync(Callback<Long> results,
Count count)
Counts the set of documents matching the query document in the
collection.
|
ListenableFuture<Long> |
AsyncMongoCollection.countAsync(Count count)
Counts the set of documents matching the query document in the
collection.
|
void |
AsyncMongoCollection.countAsync(LambdaCallback<Long> results,
Count count)
Counts the set of documents matching the query document in the
collection.
|
| Modifier and Type | Method and Description |
|---|---|
Count |
Count.Builder.build()
Constructs a new
Count object from the state of the builder. |
| Modifier and Type | Method and Description |
|---|---|
long |
SynchronousMongoCollectionImpl.count(Count count)
Counts the set of documents matching the query document in the
collection.
|
void |
AbstractMongoOperations.countAsync(Callback<Long> results,
Count count)
Constructs a
count command and sends it to the server via the
Client. |
ListenableFuture<Long> |
AbstractAsyncMongoCollection.countAsync(Count count)
Counts the set of documents matching the query document in the
collection.
|
void |
AbstractAsyncMongoCollection.countAsync(LambdaCallback<Long> results,
Count count)
Counts the set of documents matching the query document in the
collection.
|
Copyright © 2011–2014 Allanbank Consulting, Inc.. All rights reserved.