EventBus eventBus = Session.getInstance().getEventBus();
eventBus.notifyObservers(new DeletedGroupMemberResponseEvent(request, response));
// simulate a status request for recipients that don't listen for changes. Event type has person in the
// name, but that is the event used when querying groups
eventBus.notifyObservers(new GotPersonFollowerStatusResponseEvent(FollowerStatus.NOTFOLLOWING));
// In the event that a User is removed as a Follower of a Group,
// then it's necessary to update the UI to see that
// the removed User is no longer is a member of this Group, and that
// the Followers Count decrements by 1.