def driver_load(self, name):
        """\
        Loads a presentation driver class dynamically.

        If the driver has not been loaded previously, an unconfigured
        instance of the driver will be created and managed by the
        PresentationManager.  If the driver has already been loaded
        nothing will be done.  In either case, this function will
        return True.

        If the presentation driver cannot be loaded for any reason, an
        exception will be raised.
        """
	return AbstractServiceManager.service_load(self, name)
Пример #2
0
    def driver_load(self, name):
        """
        Loads a driver dynamically.

        If the driver has not been loaded previously, an unconfigured
        instance of the driver will be created and managed by the
        DeviceDriverManager. If the driver has already been loaded
        nothing will be done. In either case, this function will
        return True. If the driver cannot be loaded for any reason, an
        exception will be raised.
        
        """

        return AbstractServiceManager.service_load(self, name)