All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.thunderz99.cosmos.dto.CosmosBulkResult Maven / Gradle / Ivy

There is a newer version: 0.7.11
Show newest version
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