com.gateway.connector.Connector Maven / Gradle / Ivy
package com.gateway.connector;
public interface Connector {
void init();
void destroy();
String send(String sessionId, T message) throws Exception;
boolean exist(String sessionId) throws Exception;
}