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

vagrant.api.CommandIOListener Maven / Gradle / Ivy

package vagrant.api;

public interface CommandIOListener {
    /**
     * Called when there's new input send to a Vagrant command.
     * {@code null} passed on end of stream.
     */
    void onInput(String input);

    /**
     * Called when there's new output printed by a Vagrant command.
     * stdout and stderr are combined.
     * {@code null} passed on end of stream.
     */
    void onOutput(String output);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy