String[] keyTokens = key.split(",");
for(String keyToken : keyTokens) {
ChannelNotifyParams notifyParams = new ChannelNotifyParams(ctx.getChannel(), keyToken, onEvents);
if(opCode.equals("notify")) {
listener.addChannel(notifyParams);
// And push the value to the channel (if it's not wildcard)...
if(!keyToken.equals("*")) {
ChannelUtils.pushCacheValue(keyToken, cache, ctx);
}
} else if(opCode.equals("unnotify")) {