我在 Store 对象上的 java 邮件中面临 ConnectionListener 实现的问题。如果我断开互联网连接,我的断开方法和关闭方法不会被调用。我的代码片段是:
this.store.addConnectionListener(new ConnectionListenerImplmentedClass);
this.store.connect(HOST, USER_NAME, PASSWORD);
public void opened(ConnectionEvent e) {
LOGGER.info("Connection opened...");
}
public void disconnect(ConnectionEvent e) {
LOGGER.info("Connection opened...");
}
public void close(ConnectionEvent e) {
LOGGER.info("Connection opened...");
}
请建议我在哪里做错了......