HashSet<String> groups =
this.brokerController.getConsumerManager().queryTopicConsumeByWho(requestHeader.getTopic());
GroupList groupList = new GroupList();
groupList.setGroupList(groups);
byte[] body = groupList.encode();
response.setBody(body);
response.setCode(ResponseCode.SUCCESS);
response.setRemark(null);
return response;