36 lines
777 B
JavaScript
36 lines
777 B
JavaScript
'use strict';
|
|
|
|
var Module = function(options) {
|
|
this.db = options.db;
|
|
};
|
|
|
|
/**
|
|
* blockHandler
|
|
* @param {Block} block - the block being added or removed from the chain
|
|
* @param {Boolean} add - whether the block is being added or removed
|
|
* @param {Function} callback - call with the leveldb database operations to perform
|
|
*/
|
|
Module.prototype.blockHandler = function(block, add, callback) {
|
|
// implement in the child class
|
|
setImmediate(callback);
|
|
};
|
|
|
|
/**
|
|
* the API methods to expose
|
|
* @return {Array} return array of methods
|
|
*/
|
|
Module.prototype.methods = function() {
|
|
// Example:
|
|
// return [
|
|
// ['getData', this, this.getData, 1]
|
|
// ];
|
|
|
|
return [];
|
|
};
|
|
|
|
// Example:
|
|
// Module.prototype.getData = function(arg1, callback) {
|
|
//
|
|
// };
|
|
|
|
module.exports = Module; |