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

org.qbicc.machine.tool.MessagingToolInvoker Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.machine.tool;

/**
 * A tool invoker which invokes a tool that produces messages.
 */
public interface MessagingToolInvoker extends ToolInvoker {
    /**
     * Set the message handler for this invoker.
     *
     * @param messageHandler the message handler to use (must not be {@code null})
     */
    void setMessageHandler(ToolMessageHandler messageHandler);

    /**
     * Get the currently set message handler for this invoker.
     *
     * @return the message handler (not {@code null})
     */
    ToolMessageHandler getMessageHandler();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy