Package | Description |
---|---|
net.ravendb.client | |
net.ravendb.client.connection | |
net.ravendb.client.document | |
net.ravendb.client.document.batches | |
net.ravendb.client.shard |
Modifier and Type | Method and Description |
---|---|
<T> T[] |
ISyncAdvancedSessionOperation.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation)
Loads multiple entities that contain common prefix.
|
<T> T[] |
ISyncAdvancedSessionOperation.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter)
Loads multiple entities that contain common prefix.
|
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ISyncAdvancedSessionOperation.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation)
Loads documents with the specified key prefix and applies the specified results transformer against the results
|
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ISyncAdvancedSessionOperation.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure)
Loads documents with the specified key prefix and applies the specified results transformer against the results
|
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ISyncAdvancedSessionOperation.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure,
String skipAfter)
Loads documents with the specified key prefix and applies the specified results transformer against the results
|
<T> CloseableIterator<StreamResult<T>> |
ISyncAdvancedSessionOperation.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation)
Stream the results on the query to the client, converting them to
Java types along the way.
|
<T> CloseableIterator<StreamResult<T>> |
ISyncAdvancedSessionOperation.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation,
String skipAfter)
Stream the results on the query to the client, converting them to
Java types along the way.
|
Modifier and Type | Method and Description |
---|---|
protected List<JsonDocument> |
ServerClient.directStartsWith(OperationMetadata operationMetadata,
String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation,
String transformer,
Map<String,RavenJToken> transformerParameters,
String skipAfter) |
RavenJObjectIterator |
ServerClient.directStreamDocs(OperationMetadata operationMetadata,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
List<JsonDocument> |
IDatabaseCommands.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation)
Retrieves documents for the specified key prefix.
|
List<JsonDocument> |
ServerClient.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation) |
List<JsonDocument> |
IDatabaseCommands.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation,
String transformer,
Map<String,RavenJToken> transformerParameters)
Retrieves documents for the specified key prefix.
|
List<JsonDocument> |
ServerClient.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation,
String transformer,
Map<String,RavenJToken> transformerParameters) |
List<JsonDocument> |
IDatabaseCommands.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation,
String transformer,
Map<String,RavenJToken> transformerParameters,
String skipAfter)
Retrieves documents for the specified key prefix.
|
List<JsonDocument> |
ServerClient.startsWith(String keyPrefix,
String matches,
int start,
int pageSize,
boolean metadataOnly,
String exclude,
RavenPagingInformation pagingInformation,
String transformer,
Map<String,RavenJToken> transformerParameters,
String skipAfter) |
CloseableIterator<RavenJObject> |
IDatabaseCommands.streamDocs(Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation)
Streams the documents by etag OR starts with the prefix and match the matches
Will return *all* results, regardless of the number of items that might be returned.
|
RavenJObjectIterator |
ServerClient.streamDocs(Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
CloseableIterator<RavenJObject> |
IDatabaseCommands.streamDocs(Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter)
Streams the documents by etag OR starts with the prefix and match the matches
Will return *all* results, regardless of the number of items that might be returned.
|
RavenJObjectIterator |
ServerClient.streamDocs(Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
static RavenJObjectIterator |
ServerClient.yieldStreamResults(org.apache.http.client.methods.CloseableHttpResponse webResponse,
int start,
int pageSize,
RavenPagingInformation pagingInformation,
Function1<org.codehaus.jackson.JsonParser,Boolean> customizedEndResult) |
Constructor and Description |
---|
RavenJObjectIterator(org.apache.http.client.methods.CloseableHttpResponse response,
int start,
int pageSize,
RavenPagingInformation pagingInformation,
Function1<org.codehaus.jackson.JsonParser,Boolean> customizedEndResult) |
Modifier and Type | Method and Description |
---|---|
<T> T[] |
DocumentSession.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<T> T[] |
DocumentSession.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
DocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
DocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
DocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure,
String skipAfter) |
<TResult> Lazy<TResult[]> |
LazySessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<TResult> Lazy<TResult[]> |
LazyShardSessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<TResult> Lazy<TResult[]> |
LazySessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
<TResult> Lazy<TResult[]> |
LazyShardSessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
<T> CloseableIterator<StreamResult<T>> |
DocumentSession.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation) |
<T> CloseableIterator<StreamResult<T>> |
DocumentSession.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation,
String skipAfter) |
Modifier and Type | Method and Description |
---|---|
<TResult> Lazy<TResult[]> |
ILazySessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation)
Loads multiple entities that contain common prefix.
|
<TResult> Lazy<TResult[]> |
ILazySessionOperations.loadStartingWith(Class<TResult> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter)
Loads multiple entities that contain common prefix.
|
Constructor and Description |
---|
LazyStartsWithOperation(Class<T> clazz,
String keyPrefix,
String matches,
String exclude,
int start,
int pageSize,
InMemoryDocumentSessionOperations sessionOperations,
RavenPagingInformation pagingInformation,
String skipAfter) |
Modifier and Type | Method and Description |
---|---|
<T> T[] |
ShardedDocumentSession.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<T> T[] |
ShardedDocumentSession.loadStartingWith(Class<T> clazz,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
String skipAfter) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ShardedDocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ShardedDocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure) |
<TResult,TTransformer extends AbstractTransformerCreationTask> |
ShardedDocumentSession.loadStartingWith(Class<TResult> clazz,
Class<TTransformer> transformerClass,
String keyPrefix,
String matches,
int start,
int pageSize,
String exclude,
RavenPagingInformation pagingInformation,
LoadConfigurationFactory configure,
String skipAfter) |
<T> CloseableIterator<StreamResult<T>> |
ShardedDocumentSession.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation) |
<T> CloseableIterator<StreamResult<T>> |
ShardedDocumentSession.stream(Class<T> entityClass,
Etag fromEtag,
String startsWith,
String matches,
int start,
int pageSize,
RavenPagingInformation pagingInformation,
String skipAfter) |
Copyright © 2016. All Rights Reserved.