001package com.pusher.client.channel;
002
003/**
004 * Used to identify the state of the channel e.g. subscribed or unsubscribed.
005 */
006public enum ChannelState {
007    INITIAL, SUBSCRIBE_SENT, SUBSCRIBED, UNSUBSCRIBED, FAILED
008}