Interface ReactiveNosqlRepository<T,K> 
- All Superinterfaces:
- org.springframework.data.repository.reactive.ReactiveCrudRepository<T,,- K> - org.springframework.data.repository.reactive.ReactiveSortingRepository<T,,- K> - org.springframework.data.repository.Repository<T,- K> 
- All Known Implementing Classes:
- SimpleReactiveNosqlRepository
@NoRepositoryBean
public interface ReactiveNosqlRepository<T,K> 
extends org.springframework.data.repository.reactive.ReactiveSortingRepository<T,K> 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the configured read request consistency value.Returns the configured request durability value.intReturns the configured request timeout value, in milliseconds, or 0 if it has not been set.voidsetConsistency(String consistency) Sets the read request consistency value.voidsetDurability(String durability) Sets the request durability value.voidsetTimeout(int milliseconds) Sets the request timeout value, in milliseconds.Methods inherited from interface org.springframework.data.repository.reactive.ReactiveCrudRepositorycount, delete, deleteAll, deleteAll, deleteAll, deleteAllById, deleteById, deleteById, existsById, existsById, findAll, findAllById, findAllById, findById, findById, save, saveAll, saveAllMethods inherited from interface org.springframework.data.repository.reactive.ReactiveSortingRepositoryfindAll
- 
Method Details- 
getTimeoutint getTimeout()Returns the configured request timeout value, in milliseconds, or 0 if it has not been set.
- 
setTimeoutvoid setTimeout(int milliseconds) Sets the request timeout value, in milliseconds. This overrides any default value set in NoSQLHandleConfig. The value must be positive. This set takes precedence over the one set when usingNosqlTable.timeout().
- 
getConsistencyString getConsistency()Returns the configured read request consistency value.
- 
setConsistencySets the read request consistency value. The value must be one ofConsistencyvalues. This set takes precedence over the one set when usingNosqlTable.consistency().
- 
getDurabilityString getDurability()Returns the configured request durability value.
- 
setDurabilitySets the request durability value. The value must be one of the defined Durability values:Durability.COMMIT_NO_SYNC,Durability.COMMIT_WRITE_NO_SYNCorDurability.COMMIT_SYNC.This set takes precedence over the one set when using NosqlTable.durability().Note: This applies to On-Prem installations only. 
 
-