Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
001package com.pusher.client.channel;002003/**004 * Used to identify the state of the channel e.g. subscribed or unsubscribed.005 */006public enum ChannelState {007 INITIAL, SUBSCRIBE_SENT, SUBSCRIBED, UNSUBSCRIBED, FAILED008}