hdjs
Version:
hdjs framework
35 lines (28 loc) • 731 B
JavaScript
/**
* @fileOverview Md5
*/
define([
'../runtime/client',
'../mediator'
], function( RuntimeClient, Mediator ) {
function Md5() {
RuntimeClient.call( this, 'Md5' );
}
// 让 Md5 具备事件功能。
Mediator.installTo( Md5.prototype );
Md5.prototype.loadFromBlob = function( blob ) {
var me = this;
if ( me.getRuid() ) {
me.disconnectRuntime();
}
// 连接到blob归属的同一个runtime.
me.connectRuntime( blob.ruid, function() {
me.exec('init');
me.exec( 'loadFromBlob', blob );
});
};
Md5.prototype.getResult = function() {
return this.exec('getResult');
};
return Md5;
});