bmv.org.pushca.core.ChannelEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pushca-client Show documentation
Show all versions of pushca-client Show documentation
Advanced client for Pushca server, without connection pool support
The newest version!
package bmv.org.pushca.core;
import bmv.org.pushca.client.model.ClientFilter;
import bmv.org.pushca.client.model.PClient;
import java.util.List;
public class ChannelEvent {
public enum EventType {CREATE, ADD_MEMBERS, MARK_AS_READ, REMOVE_MEMBERS, REMOVE, ADD_IMPRESSION, REMOVE_IMPRESSION,
MEMBER_ACTIVE, MEMBER_NOT_ACTIVE}
public EventType type;
public PClient actor;
public String channelId;
public List filters;
public PImpression impression;
public long time;
}