com.buabook.kdb.interfaces.IKdbRawDataConsumer 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.exceptions.DataConsumerException;
/**
* Raw kdb Data Consumer Interface
* Interface to specify support for an object to consume standard kdb
* objects as they come off the wire (in {@link Object} form
* (c) 2014 - 2015 Sport Trades Ltd
*
* @author Jas Rajasansir
* @version 1.0.1
* @since 27 Apr 2014
*
* @see KdbConsumer
*/
public interface IKdbRawDataConsumer {
/**
* Consumes the specified kdb object to perform some action on the received data.
* @param kdbObject The kdb object to consume
*/
public void consume(Object kdbObject) throws DataConsumerException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy