All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.imap.utils.CommandUtils Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.hubspot.imap.utils;

import com.hubspot.imap.protocol.command.ImapCommand;
import com.hubspot.imap.protocol.command.fetch.StreamingFetchCommand;
import com.hubspot.imap.protocol.command.fetch.UidCommand;

public class CommandUtils {

  public static boolean isStreamingFetch(ImapCommand imapCommand) {
    return (
      imapCommand instanceof StreamingFetchCommand ||
      (imapCommand instanceof UidCommand &&
        ((UidCommand) imapCommand).getWrappedCommand() instanceof StreamingFetchCommand)
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy