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

com.pusher.client.channel.impl.InternalChannel Maven / Gradle / Ivy

package com.pusher.client.channel.impl;

import com.pusher.client.channel.Channel;
import com.pusher.client.channel.ChannelEventListener;
import com.pusher.client.channel.ChannelState;

public interface InternalChannel extends Channel, Comparable {

    String toSubscribeMessage();

    String toUnsubscribeMessage();

    void onMessage(String event, String message);

    void updateState(ChannelState state);

    void setEventListener(ChannelEventListener listener);

    ChannelEventListener getEventListener();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy