你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Conflict 类
- java.
lang. Object - JsonSerializable
- 资源
- com.
microsoft. azure. cosmosdb. Conflict
- com.
public class Conflict extends Resource
表示 Azure Cosmos DB 数据库服务中特定资源版本中的冲突。
在极少数故障情况下,会为传输中的文档生成冲突。 客户端可以检查相应的冲突实例,以查找冲突中的资源和操作。
构造函数摘要
构造函数 | 说明 |
---|---|
Conflict() |
初始化冲突对象。 |
Conflict(String jsonString) |
从 json 字符串初始化冲突对象。 |
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
String |
getOperationKind()
获取操作类型。 |
String |
getResouceType()
获取冲突资源的类型。 |
<T extends Resource> T |
getResource(Class<T> klass)
获取 Azure Cosmos DB 服务中冲突的资源。 |
String |
getSourceResourceId()
获取 Azure Cosmos DB 服务中冲突的资源 ID。 |
继承成员
JsonSerializable.get(String propertyName)
JsonSerializable.getBoolean(String propertyName)
JsonSerializable.getCollection(String propertyName)
JsonSerializable.getDouble(String propertyName)
Resource.getETag()
JsonSerializable.getHashMap()
Resource.getId()
JsonSerializable.getInt(String propertyName)
JsonSerializable.getLogger()
JsonSerializable.getLong(String propertyName)
JsonSerializable.getMapper()
JsonSerializable.getObject(String propertyName)
JsonSerializable.getObjectByPath(List<String> propertyNames)
Resource.getResourceId()
Resource.getSelfLink()
JsonSerializable.getString(String propertyName)
Resource.getTimestamp()
JsonSerializable.has(String propertyName)
JsonSerializable.JsonSerializable()
JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)
JsonSerializable.JsonSerializable(String jsonString)
JsonSerializable.remove(String propertyName)
Resource.Resource(Resource resource)
Resource.Resource()
Resource.Resource(String jsonString, ObjectMapper objectMapper)
Resource.Resource(String jsonString)
Resource.setId(String id)
Resource.setResourceId(String resourceId)
JsonSerializable.toJson()
JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)
JsonSerializable.toString()
构造函数详细信息
Conflict
public Conflict()
初始化冲突对象。
Conflict
public Conflict(String jsonString)
从 json 字符串初始化冲突对象。
参数:
jsonString
- 表示冲突的 json 字符串。
方法详细信息
getOperationKind
public String getOperationKind()
获取操作类型。
返回:
操作类型。
getResouceType
public String getResouceType()
获取冲突资源的类型。
返回:
资源类型。
getResource
public
获取 Azure Cosmos DB 服务中冲突的资源。
参数:
klass
- 返回的冲突资源类型。
返回:
冲突的资源。
getSourceResourceId
public String getSourceResourceId()
获取 Azure Cosmos DB 服务中冲突的资源 ID。
返回:
冲突的资源 ID。