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,
008    SUBSCRIBE_SENT,
009    SUBSCRIBED,
010    UNSUBSCRIBED,
011    FAILED,
012}