Uses of Class
com.google.cloud.spring.data.spanner.core.SpannerReadOptions
Packages that use SpannerReadOptions
Package
Description
Core support for Spring Data Cloud Spanner.
-
Uses of SpannerReadOptions in com.google.cloud.spring.data.spanner.core
Methods in com.google.cloud.spring.data.spanner.core that return SpannerReadOptionsModifier and TypeMethodDescriptionSpannerReadOptions.addReadOption(com.google.cloud.spanner.Options.ReadOption readOption) SpannerReadOptions.setAllowPartialRead(boolean allowPartialRead) SpannerReadOptions.setIncludeProperties(Set<String> includeProperties) SpannerReadOptions.setTimestamp(com.google.cloud.Timestamp timestamp) SpannerReadOptions.setTimestampBound(com.google.cloud.spanner.TimestampBound timestampBound) Methods in com.google.cloud.spring.data.spanner.core with parameters of type SpannerReadOptionsModifier and TypeMethodDescription<T> TSpannerOperations.performReadOnlyTransaction(Function<SpannerTemplate, T> operations, SpannerReadOptions readOptions) Performs multiple read-only operations in a single transaction.<T> TSpannerTemplate.performReadOnlyTransaction(Function<SpannerTemplate, T> operations, SpannerReadOptions readOptions) <T> TSpannerOperations.read(Class<T> entityClass, com.google.cloud.spanner.Key key, SpannerReadOptions options) Finds a single stored object using a key.<T> List<T>SpannerOperations.read(Class<T> entityClass, com.google.cloud.spanner.KeySet keys, SpannerReadOptions options) Finds objects stored from their keys.<T> TSpannerTemplate.read(Class<T> entityClass, com.google.cloud.spanner.Key key, SpannerReadOptions options) <T> List<T>SpannerTemplate.read(Class<T> entityClass, com.google.cloud.spanner.KeySet keys, SpannerReadOptions options) <T> List<T>SpannerOperations.readAll(Class<T> entityClass, SpannerReadOptions options) Finds all objects of the given type.<T> List<T>SpannerTemplate.readAll(Class<T> entityClass, SpannerReadOptions options) -
Uses of SpannerReadOptions in com.google.cloud.spring.data.spanner.core.mapping.event
Methods in com.google.cloud.spring.data.spanner.core.mapping.event that return SpannerReadOptionsModifier and TypeMethodDescriptionAfterReadEvent.getSpannerReadOptions()Get the options that were used to conduct the read.Constructors in com.google.cloud.spring.data.spanner.core.mapping.event with parameters of type SpannerReadOptionsModifierConstructorDescriptionAfterReadEvent(Iterable source, com.google.cloud.spanner.KeySet keySet, SpannerReadOptions spannerReadOptions) Constructor.