com.pusher.client.channel.ChannelState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pusher-java-client Show documentation
Show all versions of pusher-java-client Show documentation
This is a Java client library for Pusher, targeted at core Java and Android.
package com.pusher.client.channel;
/**
* Used to identify the state of the channel e.g. subscribed or unsubscribed.
*/
public enum ChannelState {
INITIAL, SUBSCRIBE_SENT, SUBSCRIBED, UNSUBSCRIBED, FAILED
}