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

com.algolia.search.models.indexing.MultiResponse 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 MultiResponse implements Serializable, WaitableResponse {

  public List getResponses() {
    return responses;
  }

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

  private List responses;

  @Override
  public void waitTask() {
    for (WaitableResponse resp : responses) {
      resp.waitTask();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy