* @package taoDelivery */ interface RuntimeService { const SERVICE_ID = 'taoDelivery/Runtime'; /** * Provides the container to run the delivery * * @param string $deliveryId * @return DeliveryContainer */ public function getDeliveryContainer($deliveryId); /** * Gets the service call to run this assembly. * Currently still required as many custom extensions retireve * delivery data from the runtime (breaking abstraction layers) * * @param string $deliveryId * @return \tao_models_classes_service_ServiceCall * @deprecated */ public function getRuntime($deliveryId); }