You are here

public function QueryResult::getSize in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 src/Commands/QueryResult.php \Drupal\salesforce\Commands\QueryResult::getSize()
  2. 5.0.x src/Commands/QueryResult.php \Drupal\salesforce\Commands\QueryResult::getSize()

Getter for query size (total number of records returned).

Return value

int The size.

File

src/Commands/QueryResult.php, line 44

Class

QueryResult
Adds structured metadata to RowsOfFieldsWithMetadata.

Namespace

Drupal\salesforce\Commands

Code

public function getSize() {
  return $this->size;
}