public function Request::isInBatch in JSON-RPC 8
Same name and namespace in other branches
- 2.x src/Object/Request.php \Drupal\jsonrpc\Object\Request::isInBatch()
Checks if this is a batched request.
Return value
bool True if it's a batched request.
File
- src/
Object/ Request.php, line 104
Class
- Request
- Request object to help implement JSON RPC's spec for request objects.
Namespace
Drupal\jsonrpc\ObjectCode
public function isInBatch() {
return $this->inBatch;
}