/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.component.execution.api; /** * Receiver/processor for single {@link ConsoleRow} events. * * @author Robert Mischke */ public interface SingleConsoleRowsProcessor { /** * Called on a {@link ConsoleRow} event. * * @param consoleRow the new {@link ConsoleRow} */ void onConsoleRow(ConsoleRow consoleRow); }