スペースに渡されるパラメーターに応じて通知できるハンドラーメソッドを実装しようとしています。たとえば、次のコードを使用して、テンプレートをスペースに配置します。ここで、タブは部屋の名前です。
private void createMessageListener(String tab) {
// create the exporter
Exporter myDefaultExporter =
new BasicJeriExporter (TcpServerEndpoint.getInstance(0),
new BasicILFactory(), false, true);
try {
// register this as a remote object
// and get a reference to the 'stub'
msgListener = (RemoteEventListener) myDefaultExporter.export(this);
// add the listener
Message template = new Message(tab);
regMsgs = space.notify(template, null, this.msgListener, Lease.FOREVER, null);
seqMsgs = regMsgs.getSequenceNumber();
} catch (Exception e) {
e.printStackTrace();
}
}
以下に示すようにイベント登録を処理しようとしたときに、notifyメソッドに渡されたパラメーターを確認する方法はありますか?
public void notify(RemoteEvent arg0) throws UnknownEventException,
RemoteException {
///Find out the parameter in the notification and then handle?
}
}