Show
Ignore:
Timestamp:
08/04/08 09:17:20 PM (5 months ago)
Author:
octorian
Message:

Initial IMAP IDLE implementation

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/LogicMail/src/org/logicprobe/LogicMail/mail/pop/PopClient.java

    r264 r266  
    210210    } 
    211211 
     212    public boolean hasIdle() { 
     213                return false; 
     214        } 
     215 
    212216    public FolderTreeItem getFolderTree() throws IOException, MailException { 
    213217        return null; 
     
    336340        // Undelete is not supported, so we do nothing here. 
    337341    } 
     342 
     343        public void idleModeBegin() throws IOException, MailException { 
     344                // Idle mode is not supported, so we do nothing here. 
     345        } 
     346 
     347        public void idleModeEnd() throws IOException, MailException { 
     348                // Idle mode is not supported, so we do nothing here. 
     349        } 
     350 
     351        public boolean idleModePoll() throws IOException, MailException { 
     352                // Idle mode is not supported, so we do nothing here. 
     353                return false; 
     354        } 
    338355}