Sets the methods to call after service initialization.
@api
array $calls An array of method calls:
Definition The current instance
public function setMethodCalls(array $calls = array()) {
$this->calls = array();
foreach ($calls as $call) {
$this
->addMethodCall($call[0], $call[1]);
}
return $this;
}