Data.Cloud.AmazonAPI.TAmazonConnectionInfo.ConsistentRead

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ConsistentRead: Boolean read FConsistentRead write FConsistentRead default True;

C++

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

Properties

Type Visibility Source Unit Parent
property published
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI TAmazonConnectionInfo

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