Add interface method for initialize which takes an event queue.

This commit is contained in:
mscott%netscape.com 1999-03-19 22:48:45 +00:00
parent 782e878db8
commit eda7f78716

View File

@ -54,6 +54,13 @@ public:
/////////////////////////////////////////////////////////////////////////
NS_IMETHOD LoadUrl(nsIURL * aUrl, nsISupports * aConsumer) = 0;
/////////////////////////////////////////////////////////////////////////
// Right now, initialize requires the event queue of the UI thread,
// or more importantly the event queue of the consumer of the imap
// protocol data.
/////////////////////////////////////////////////////////////////////////
NS_IMETHOD Initialize(PLEventQueue * aSinkEventQueue) = 0;
NS_IMETHOD GetThreadEventQueue(PLEventQueue **aEventQueue) = 0;
};