/**
* Create and Start Listening to your channel
*/
public ChatExample(){
try {
channel = new ChannelAPI("http://example.appspot.com", "key", chatListener); //Production Example
//channel = new ChannelAPI("http://localhost:8888", "key", chatListener); //Local Dev Example
channel.open();
} catch (Exception e){
System.out.println("Something went wrong...");
}