org.gmjm.slack.api.rtm.Event Maven / Gradle / Ivy
package org.gmjm.slack.api.rtm;
/**
* EXPERIMENTAL: This feature is still in development, and the interfaces may change upon official release.
*
* An Event is an object that represents a message received from the RTM API.
* The EventType describes the type of event, and the payload is dependent on
* the implementation provided by the core library, or any custom extensions.
*
* @param the type of the event contents.
*/
public interface Event {
EventType getEventType();
T getPayload();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy