Class: DialogManager

mmir. DialogManager

The DialogManager gives access to the most commonly used functions of the framework.

On initialization, the DialogManager also creates the mmir.DialogEngine and returns it as the second argument of the init() function's callback (or the Promise's triggered callbacks). In addition, the DialogEngine is exported as module "mmirf/dialogEngine" via RequireJS' define() function.

Example
//initialization of inputManager
require('mmirf/dialogManager').init().then( function(data){
		var dialogManagerInstance = data.manager;
		var dialogEngineInstance  = data.engine;
		//do something...
});

Extends

  • mmir.ManagerFactory

Members

_instance