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

ru.yandex.qatools.camelot.api.PluginInterop Maven / Gradle / Ivy

There is a newer version: 2.5.4
Show newest version
package ru.yandex.qatools.camelot.api;

/**
 * The interface for internal plugin interoperability
 *
 * @author Ilya Sadykov (mailto: [email protected])
 */
public interface PluginInterop {
    /**
     * Returns the repository for the plugin
     */
    AggregatorRepository repo();

    /**
     * Returns the storage for the plugin
     */
    Storage storage();

    /**
     * Returns the input producer for the plugin
     */
    EventProducer input();

    /**
     * Returns the output producer for the plugin
     */
    EventProducer output();

    /**
     * Returns the client sender
     */
    ClientMessageSender client();

    /**
     * Returns the plugin client sender for the topic
     */
    ClientMessageSender client(String topic);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy