// listed topicURI, send them to the AnnotationMethodHandler so he can
// call any available method that is annotated with
// @WampUnsubscribeListener
for (String topicURI : topicURIs) {
UnsubscribeMessage unsubscribeMessage = new UnsubscribeMessage(topicURI);
unsubscribeMessage.addHeader(WampMessageHeader.WEBSOCKET_SESSION_ID, sessionId);
annotationMethodHandler.handleMessage(unsubscribeMessage);
}
annotationMethodHandler.unregisterSessionFromAllPrefixCurie(sessionId);
}