Data.Cloud.AmazonAPI.TAmazonConnectionInfo.ConsistentRead

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Unit: Data.Cloud.AmazonAPI
Parent: TAmazonConnectionInfo

Delphi

property ConsistentRead: Boolean read FConsistentRead write FConsistentRead default True;

C++

__property bool ConsistentRead = {read=FConsistentRead, write=FConsistentRead, default=1};

Description

Specifies whether to use consistent read or not.

Set ConsistentRead to True to use consistent read whenever possible, and to False otherwise.

Amazon often uses the 'eventual consistency' read option, which does not guarantee that any one read operation is returning the most recent data. Some services allow for setting ConsistentRead to True, which disables this eventual consistency model.

See Also