Elastica\Bulk\ResponseSet::isOk PHP Method

isOk() public method

public isOk ( ) : boolean
return boolean
    public function isOk()
    {
        foreach ($this->getBulkResponses() as $bulkResponse) {
            if (!$bulkResponse->isOk()) {
                return false;
            }
        }
        return true;
    }