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

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

package com.xxdb.streaming.client;

import com.xxdb.streaming.client.IMessage;

import java.util.List;

interface MessageDispatcher {
	boolean isRemoteLittleEndian(String host);
    boolean isClosed(String topic);
    void dispatch(IMessage message);
    void batchDispatch(List message);
    void tryReconnect(String topic);
    void setMsgId(String topic, long msgId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy