/**
* @return void
*/
public function reset() { if ($this->pool instanceof ResetInterface
) { $this->pool->
reset();
} $this->
clearCalls();
} public function delete(string
$key): bool
{ $event =
$this->
start(__FUNCTION__
);
try { return $event->result
[$key] =
$this->pool->
deleteItem($key);
} finally { $event->end =
microtime(true
);
} }