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

com.algolia.search.models.indexing.BatchIndexingResponse Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.indexing;

import com.algolia.search.models.WaitableResponse;
import java.io.Serializable;
import java.util.List;

public class BatchIndexingResponse implements WaitableResponse, Serializable {

  public BatchIndexingResponse(List responses) {
    this.responses = responses;
  }

  public List getResponses() {
    return responses;
  }

  public BatchIndexingResponse setResponses(List responses) {
    this.responses = responses;
    return this;
  }

  private List responses;

  @Override
  public void waitTask() {
    for (BatchResponse response : responses) response.waitTask();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy