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

io.dangernoodle.slack.client.rtm.SlackWebSocketClient Maven / Gradle / Ivy

The newest version!
package io.dangernoodle.slack.client.rtm;

import java.io.IOException;


public interface SlackWebSocketClient
{
    void connect(String url) throws IOException;

    void disconnect() throws IOException;

    boolean isConnected();

    boolean isSecure();

    void send(Object object) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy