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

com.github.fluorumlabs.disconnect.highcharts.DataParsedCallbackFunction Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.FunctionalInterface;
import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSFunctor;

/**
 * Callback function to access the parsed columns, the two-dimentional input
 * data array directly, before they are interpreted into series data and
 * categories.
 *
 * @param columns
 * The parsed columns by the data module.
 *
 * @return Return false to stop completion, or call this.complete() to
 * continue async.
 *
 */
@JSFunctor
@FunctionalInterface
public interface DataParsedCallbackFunction extends Any {
  boolean apply(Array> columns);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy