Searched defs:event (Results 1 - 20 of 20) sorted by relevance
/javamail/mail/src/main/java/javax/mail/event/ |
H A D | MessageChangedListener.java | 41 package javax.mail.event;
|
H A D | MessageCountAdapter.java | 41 package javax.mail.event;
|
H A D | MessageCountListener.java | 41 package javax.mail.event;
|
H A D | StoreListener.java | 41 package javax.mail.event; 54 * Invoked when the Store generates a notification event.
|
H A D | ConnectionAdapter.java | 41 package javax.mail.event;
|
H A D | ConnectionListener.java | 41 package javax.mail.event; 62 * cannot be disconnected, so a folder will not fire this event
|
H A D | FolderAdapter.java | 41 package javax.mail.event;
|
H A D | FolderListener.java | 41 package javax.mail.event;
|
H A D | MailEvent.java | 41 package javax.mail.event; 57 * @param source the source of the event 65 * this event. Subclasses provide the implementation.
|
H A D | TransportAdapter.java | 41 package javax.mail.event;
|
H A D | TransportListener.java | 41 package javax.mail.event; 52 * @see javax.mail.event.TransportEvent
|
H A D | ConnectionEvent.java | 41 package javax.mail.event; 62 * The event type. 74 * @param type the event type 82 * Return the type of this event
|
H A D | MessageChangedEvent.java | 41 package javax.mail.event; 60 * The event type. 86 * Return the type of this event.
|
H A D | MessageCountEvent.java | 41 package javax.mail.event; 71 * The event type. 78 * If true, this event is the result of an explicit 81 * If false, this event is the result of an expunge 98 * @param type The event type 99 * @param removed If true, this event is the result of an explicit 102 * If false, this event is the result of an expunge 116 * Return the type of this event. 124 * Indicates whether this event is the result of an explicit 126 * sources. If <code>true</code>, this event i [all...] |
H A D | StoreEvent.java | 41 package javax.mail.event; 68 * The event type. 87 * @param type the event type 88 * @param message a message assoicated with the event 97 * Return the type of this event.
|
H A D | FolderEvent.java | 41 package javax.mail.event; 74 * The event type. 81 * The folder the event occurred on. 86 * The folder that represents the new name, in case of a RENAMED event. 97 * @param source The source of the event 99 * @param type The event type 108 * @param source The source of the event 111 * @param type The event type 123 * Return the type of this event. 142 * If this event indicate [all...] |
H A D | TransportEvent.java | 41 package javax.mail.event; 53 * @see javax.mail.event.TransportListener 60 * transport firing this event. validSent[] contains all the addresses 83 * The event type. 95 /** The Message to which this event applies. */ 104 * @param type the event type (MESSAGE_DELIVERED, etc.) 123 * Return the type of this event.
|
/javamail/mail/src/main/java/javax/mail/ |
H A D | EventQueue.java | 50 import javax.mail.event.MailEvent; 54 * This class implements an event queue, and a dispatcher thread that 67 * A special event that causes the queue processing task to terminate. 77 // Kill the event dispatching thread. 86 MailEvent event = null; field in class:EventQueue.QueueElement 89 QueueElement(MailEvent event, Vector<? extends EventListener> vector) { argument 90 this.event = event; 104 * Enqueue an event. 106 synchronized void enqueue(MailEvent event, argument [all...] |
H A D | Service.java | 47 import javax.mail.event.*; 158 // create or choose the appropriate event queue 160 session.getProperties().getProperty("mail.event.scope", "folder"); 162 (Executor)session.getProperties().get("mail.event.executor"); 192 * @see javax.mail.event.ConnectionEvent 241 * @see javax.mail.event.ConnectionEvent 260 * @see javax.mail.event.ConnectionEvent 282 * @see javax.mail.event.ConnectionEvent 415 // finally, deliver the connection event 501 * cleanup should call this method as a last step to insure event 641 queueEvent(MailEvent event, Vector vector) argument [all...] |
H A D | Folder.java | 50 import javax.mail.event.*; 147 // create or choose the appropriate event queue 150 session.getProperties().getProperty("mail.event.scope", "folder"); 152 (Executor)session.getProperties().get("mail.event.executor"); 420 * @see javax.mail.event.FolderEvent 573 * @see javax.mail.event.FolderEvent 593 * @see javax.mail.event.FolderEvent 630 * @see javax.mail.event.ConnectionEvent 645 * @see javax.mail.event.ConnectionEvent 1064 * @see javax.mail.event 1621 queueEvent(MailEvent event, Vector<? extends EventListener> vector) argument [all...] |
Completed in 288 milliseconds