mirror of https://github.com/axmolengine/axmol.git
144 lines
2.4 KiB
JavaScript
144 lines
2.4 KiB
JavaScript
/**
|
|
* @module pluginx_umeng
|
|
*/
|
|
var plugin = plugin || {};
|
|
|
|
/**
|
|
* @class AnalyticsUmeng
|
|
*/
|
|
plugin.AnalyticsUmeng = {
|
|
|
|
/**
|
|
* @method setSessionContinueMillis
|
|
* @param {long}
|
|
*/
|
|
setSessionContinueMillis : function () {},
|
|
|
|
/**
|
|
* @method stopSession
|
|
*/
|
|
stopSession : function () {},
|
|
|
|
/**
|
|
* @method getSDKVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getSDKVersion : function () {},
|
|
|
|
/**
|
|
* @method updateOnlineConfig
|
|
*/
|
|
updateOnlineConfig : function () {},
|
|
|
|
/**
|
|
* @method logTimedEventBegin
|
|
* @param {const char*}
|
|
*/
|
|
logTimedEventBegin : function () {},
|
|
|
|
/**
|
|
* @method logError
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logError : function () {},
|
|
|
|
/**
|
|
* @method checkUpdate
|
|
*/
|
|
checkUpdate : function () {},
|
|
|
|
/**
|
|
* @method getPluginVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginVersion : function () {},
|
|
|
|
/**
|
|
* @method setDefaultReportPolicy
|
|
* @param {cocos2d::plugin::AnalyticsUmeng::UmengReportPolicy}
|
|
*/
|
|
setDefaultReportPolicy : function () {},
|
|
|
|
/**
|
|
* @method init
|
|
* @return A value converted from C/C++ "bool"
|
|
*/
|
|
init : function () {},
|
|
|
|
/**
|
|
* @method logTimedKVEventEnd
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logTimedKVEventEnd : function () {},
|
|
|
|
/**
|
|
* @method logTimedKVEventBegin
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
* @param {LogEventParamMap*}
|
|
*/
|
|
logTimedKVEventBegin : function () {},
|
|
|
|
/**
|
|
* @method setCaptureUncaughtException
|
|
* @param {bool}
|
|
*/
|
|
setCaptureUncaughtException : function () {},
|
|
|
|
/**
|
|
* @method getConfigParams
|
|
* @return A value converted from C/C++ "const char*"
|
|
* @param {const char*}
|
|
*/
|
|
getConfigParams : function () {},
|
|
|
|
/**
|
|
* @method getPluginName
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginName : function () {},
|
|
|
|
/**
|
|
* @method logTimedEventWithLabelBegin
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logTimedEventWithLabelBegin : function () {},
|
|
|
|
/**
|
|
* @method logTimedEventWithLabelEnd
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logTimedEventWithLabelEnd : function () {},
|
|
|
|
/**
|
|
* @method logEvent
|
|
* @param {const char*}
|
|
* @param {LogEventParamMap*}
|
|
*/
|
|
logEvent : function () {},
|
|
|
|
/**
|
|
* @method logTimedEventEnd
|
|
* @param {const char*}
|
|
*/
|
|
logTimedEventEnd : function () {},
|
|
|
|
/**
|
|
* @method logEventWithLabel
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logEventWithLabel : function () {},
|
|
|
|
/**
|
|
* @method setDebugMode
|
|
* @param {bool}
|
|
*/
|
|
setDebugMode : function () {},
|
|
|
|
};
|