com.buabook.kdb.interfaces.IKdbTableConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-kdb-communication Show documentation
Show all versions of java-kdb-communication Show documentation
Java library to publish data into and query data out of kdb+ processes (c) 2017 Sport Trades Ltd
The newest version!
package com.buabook.kdb.interfaces;
import com.buabook.kdb.consumer.KdbConsumer;
import com.buabook.kdb.data.KdbTable;
import com.buabook.kdb.exceptions.DataConsumerException;
/**
* {@link KdbTable} Data Consumer Interface
* Interface to specify support for an object to consume a kdb object, wrapped
* in the custom {@link KdbTable} format
* (c) 2014 - 2015 Sport Trades Ltd
*
* @author Jas Rajasansir
* @version 1.0.1
* @since 27 Apr 2014
*
* @see KdbConsumer
*/
public interface IKdbTableConsumer {
/**
* Consumes the specified kdb table to perform some action on the received data.
* @param table The table of data received from a kdb process
*/
public void consume(KdbTable table) throws DataConsumerException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy