现在我正在使用Cauldron核心为Minecraft(1.6.4)服务器制作Bukkit插件。 Cauldron核心有一个名为CustomModRecipe的类,它有一个名为getHandle()的方法。此方法返回“aah”对象。问题是我无法创建可存储此“aah”对象的变量。但是如果我直接使用那个对象,eclipse会向我展示我可以用于该对象的不同方法(如a(),B()等)。经过一番搜索,我发现一个包含这些奇怪的命名类的jar,但包含它并没有改变任何东西。在这里,我展示了我的代码:
socket.onclose = function(reason){
console.log(socket.adapter.sids[socket.id]);
Object.getPrototypeOf(this).onclose.call(this,reason);
/* Delay of 1 seconds to remove from all rooms and disconnect the id */
setTimeout(function() {
if (!this.connected) return this;
debug('closing socket - reason %s', reason);
this.leaveAll();
this.nsp.remove(this);
this.client.remove(this);
this.connected = false;
this.disconnected = true;
delete this.nsp.connected[this.id];
this.emit('disconnect', reason);
}, 60 * 1000);
}