io.github.thunderz99.cosmos.dto.CosmosBulkResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cosmos Show documentation
Show all versions of java-cosmos Show documentation
A lightweight Azure CosmosDB client for Java
package io.github.thunderz99.cosmos.dto;
import io.github.thunderz99.cosmos.CosmosDocument;
import io.github.thunderz99.cosmos.CosmosException;
import java.util.ArrayList;
import java.util.List;
/**
* The result of bulk operations
*/
public class CosmosBulkResult {
/**
* The result of success operations
*/
public List successList = new ArrayList<>();
/**
* The result of retries operations that exceed the max retry times
*/
public List> retryList = new ArrayList<>();
/**
* The result of fatal operations. e.g. 409 Conflict
*/
public List fatalList = new ArrayList<>();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy