use of org.b3log.latke.servlet.renderer.DoNothingRenderer in project solo by b3log.
the class StatProcessor method onlineVisitorCountRefresher.
/**
* Online visitor count refresher.
*
* @param context the specified context
*/
@RequestProcessing(value = "/console/stat/onlineVisitorRefresh", method = HTTPRequestMethod.GET)
public void onlineVisitorCountRefresher(final HTTPRequestContext context) {
context.setRenderer(new DoNothingRenderer());
statisticMgmtService.removeExpiredOnlineVisitor();
}
Aggregations