if (channelId == null)
return; // Use of Channel API not enabled
GWT.log("Creating client channel id: " + currentUser.getChannelId());
Channel channel = ChannelFactory.createChannel(currentUser.getChannelId());
channel.open(new SocketListener() {
public void onOpen() {
GWT.log("Channel onOpen()");
}
public void onMessage(String encodedData) {