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

io.gatling.recorder.internal.bouncycastle.mime.MimeParser Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.mime;

import java.io.IOException;

/**
 * Base interface for a MIME parser.
 */
public interface MimeParser
{
    /**
     * Trigger the start of parsing.
     *
     * @param listener callback to be signalled as each MIME object is identified.
     * @throws IOException on a parsing/IO exception.
     */
    void parse(MimeParserListener listener)
        throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy