You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by "Norman Maurer (JIRA)" <se...@james.apache.org> on 2010/09/20 20:51:35 UTC

[jira] Updated: (IMAP-216) DelegatingMailboxListener might skip some events

     [ https://issues.apache.org/jira/browse/IMAP-216?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Norman Maurer updated IMAP-216:
-------------------------------

    Affects Version/s: 0.1
          Component/s: Store

> DelegatingMailboxListener might skip some events
> ------------------------------------------------
>
>                 Key: IMAP-216
>                 URL: https://issues.apache.org/jira/browse/IMAP-216
>             Project: JAMES Imap
>          Issue Type: Bug
>          Components: Store
>    Affects Versions: 0.1
>            Reporter: François-Denis Gonthier
>            Assignee: Norman Maurer
>             Fix For: 0.2
>
>
> In the following code from DelegatingMailboxListener, events might be skipped if the a closed listener is found and removed in the listener list.
>     public void event(Event event) {
>         List<MailboxListener> mListeners = listeners.get(event.getMailboxPath());
>         if (mListeners != null && mListeners.isEmpty() == false) {
>         	int sz = mListeners.size();
>             for (int i = 0; i < sz; i++) {
>                 MailboxListener l = mListeners.get(i);
>                 if (l.isClosed()) {
>                     mListeners.remove(l);
>                 } else {
>                     l.event(event);
>                 }
>             }
>         }
>  }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org