Map<OperationType, AbstractResponseHandler> handlers =
new HashMap<OperationType, AbstractResponseHandler>();
handlers.put(OperationType.SUBSCRIBE,
new MultiplexSubscribeResponseHandler(cfg, channelManager));
handlers.put(OperationType.CLOSESUBSCRIPTION,
new CloseSubscriptionResponseHandler(cfg, channelManager));
return handlers;
}