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

net.yudichev.jiotty.connector.google.gmail.GmailClient Maven / Gradle / Ivy

package net.yudichev.jiotty.connector.google.gmail;

import jakarta.mail.MessagingException;
import jakarta.mail.internet.MimeMessage;
import net.yudichev.jiotty.common.lang.Closeable;

import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;

public interface GmailClient {
    // TODO on all google services, allow passing the executor
    Closeable subscribe(String query, Consumer handler);

    CompletableFuture send(MessageComposer messageComposer);

    interface MessageComposer {
        void accept(MimeMessage message) throws MessagingException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy