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

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy