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

org.gmjm.slack.api.rtm.RtmSession Maven / Gradle / Ivy

package org.gmjm.slack.api.rtm;

/**
 * EXPERIMENTAL: This feature is still in development, and the interfaces may change upon official release.
 *
 * The RtmSession interface
 *
 * @param  the type of the event contents.
 */
public interface RtmSession {

	RtmSessionDetails getDetails();

	void send(String message) throws RtmSessionException;

	void registerConsumer(EventConsumer eventConsumer);

	void removeConsumer(EventConsumerID id);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy