MessageCountEventpublic class MessageCountEvent extends MailEvent This class notifies changes in the number of messages in a folder.
Note that some folder types may only deliver MessageCountEvents at
certain times or after certain operations. IMAP in particular will
only notify the client of MessageCountEvents when a client issues a
new command.
Refer to RFC 2060
http://www.ietf.org/rfc/rfc2060.txt for details.
A client may want "poll" the folder by occasionally calling the
getMessageCount or isConnected methods
to solicit any such notifications. |
Fields Summary |
---|
public static final int | ADDEDThe messages were added to their folder | public static final int | REMOVEDThe messages were removed from their folder | protected int | typeThe event type. | protected boolean | removedIf true, this event is the result of an explicit
expunge by this client, and the messages in this
folder have been renumbered to account for this.
If false, this event is the result of an expunge
by external sources. | protected transient Message[] | msgsThe messages. | private static final long | serialVersionUID |
Constructors Summary |
---|
public MessageCountEvent(Folder folder, int type, boolean removed, Message[] msgs)Constructor.
super(folder);
this.type = type;
this.removed = removed;
this.msgs = msgs;
|
Methods Summary |
---|
public void | dispatch(java.lang.Object listener)Invokes the appropriate MessageCountListener method.
if (type == ADDED)
((MessageCountListener)listener).messagesAdded(this);
else // REMOVED
((MessageCountListener)listener).messagesRemoved(this);
| public Message[] | getMessages()Return the array of messages added or removed.
return msgs;
| public int | getType()Return the type of this event.
return type;
| public boolean | isRemoved()Indicates whether this event is the result of an explicit
expunge by this client, or due to an expunge from external
sources. If true , this event is due to an
explicit expunge and hence all remaining messages in this
folder have been renumbered. If false , this event
is due to an external expunge.
Note that this method is valid only if the type of this event
is REMOVED
return removed;
|
|