Skip to content

Instantly share code, notes, and snippets.

@cloudbow
Created July 10, 2014 07:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cloudbow/92e17c49e538a45c9044 to your computer and use it in GitHub Desktop.
ApnsMessageStatsSysLogger
/**
*
*/
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();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment