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

org.bidib.wizard.common.script.test.StringChunkResponseHandler Maven / Gradle / Ivy

package org.bidib.wizard.common.script.test;

import java.util.function.Consumer;

import org.bidib.wizard.api.model.NodeInterface;

@FunctionalInterface
public interface StringChunkResponseHandler {

    /**
     * Handle the node string chunk response.
     * 
     * @param connectionId
     *            the connection id
     * @param node
     *            the node
     * @param namespace
     *            the namespace
     * @param stringId
     *            the string id
     * @param value
     *            the value
     */
    boolean handle(
        String connectionId, final NodeInterface node, int namespace, int stringId, final String value,
        final Consumer logConsole);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy