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

com.xxdb.streaming.client.IMessage Maven / Gradle / Ivy

Go to download

The messaging and data conversion protocol between Java and DolphinDB server

There is a newer version: 1.0.27
Show newest version
package com.xxdb.streaming.client;

import com.xxdb.data.Entity;

public interface IMessage {
	String getTopic();
	long getOffset();
	Entity getEntity(int colIndex);
	 T getValue(int colIndex);
	 T getValue(String colName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy