Created
July 10, 2014 07:14
-
-
Save cloudbow/92e17c49e538a45c9044 to your computer and use it in GitHub Desktop.
Revisions
-
cloudbow created this gist
Jul 10, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ /** * */ package apns.netty.syslog; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; /** * @author arung */ @Component public class ApnsMessageStatsSysLogger { @Autowired ApnsSysLogger apnsSysLogger; @Scheduled(cron = "${APNSConfig.status.delay}") public void statusLog() { // ApnsMessageStatsSysLogger.LOGGER.trace("Doing status logs"); apnsSysLogger.sendStatusSyslog(); } }