%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/modules/bizproc/classes/general/ |
| Current File : //home/bitrix/www/bitrix/modules/bizproc/classes/general/runtimeservice.php |
<?
abstract class CBPRuntimeService
{
protected $runtime;
public function SetRuntime(CBPRuntime $runtime)
{
$this->runtime = $runtime;
}
public function Start(CBPRuntime $runtime = null)
{
if ($runtime != null)
$this->SetRuntime($runtime);
}
public function Stop()
{
}
}