more on cached imap connections work - added Get/SetMaximumConnectionsNumber(), GetImapConnectionAndLoadUrl(), LoadNextQueuedUrl(), RemoveConnection() method

This commit is contained in:
jefft%netscape.com 1999-05-18 22:32:46 +00:00
Родитель e2e412bdb1
Коммит ada08534f2
1 изменённых файлов: 42 добавлений и 8 удалений

Просмотреть файл

@ -1,7 +1,23 @@
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM nsIPop3IncomingServer.idl
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998, 1999 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef __gen_nsIImapIncomingServer_h__
#define __gen_nsIImapIncomingServer_h__
@ -16,13 +32,31 @@
{0x3d2e7e38, 0xf9d8, 0x11d2, \
{ 0xaf, 0x8f, 0x00, 0x10, 0x83, 0x00, 0x2d, 0xa8 }}
class nsIImapIncomingServer : public nsISupports {
public:
static const nsIID& GetIID() {
static nsIID iid = NS_IIMAPINCOMINGSERVER_IID;
return iid;
}
// ** forward declaration **
class nsIUrlListener;
class nsIURL;
class nsIImapUrl;
class nsIEventQueue;
class nsIImapProtocol;
class nsIImapIncomingServer : public nsISupports {
public:
static const nsIID& GetIID() {
static nsIID iid = NS_IIMAPINCOMINGSERVER_IID;
return iid;
}
// ** attribute maximum cached connections **
NS_IMETHOD GetMaximumConnectionsNumber(PRInt32* maxConnections) = 0;
NS_IMETHOD SetMaximumConnectionsNumber(PRInt32 maxConnections) = 0;
NS_IMETHOD GetImapConnectionAndLoadUrl(nsIEventQueue* aClientEventQueue,
nsIImapUrl* aImapUrl,
nsIUrlListener* aUrlListener,
nsISupports* aConsumer,
nsIURL** aURL) = 0;
NS_IMETHOD LoadNextQueuedUrl() = 0;
NS_IMETHOD RemoveConnection(nsIImapProtocol* aImapConnection) = 0;
};
#endif /* __gen_nsIPop3IncomingServer_h__ */