Hi guys,

Is it possible to make a unsubscribe (channel) in RedisMessageListenerContainer?

I will put on context: my messages listeners are added dynamically,
Code:
public void addMessageListener(MessageListener listener, Topic topic)
, 1 user -> 1 message listener... (under WebSockets I add message listener). When the user closes the connection, WebSockets, I need to remove the message listener associated... but I do not find the way to do under RedisMessageListenerContainer... Is it possible?

My code is working... but I need only remove message listener associated at user

Thanks !