Package jobs

Source Code of jobs.CleanMemoryDataJob

/* 

Copyright [2013-2014] eBay Software Foundation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

*/
package jobs;

import models.agent.batch.commands.message.BatchResponseFromManager;
import models.asynchttp.actors.ActorConfig;
import models.data.providers.AgentCommandProvider;
import models.data.providers.AgentDataProvider;
import models.utils.ConfUtils;
import models.utils.DateUtils;
import models.utils.VarUtils;
import play.jobs.Job;
import play.jobs.On;
import play.jobs.OnApplicationStart;

/**
*
* @author ypei
*
*/
// at 0:50 am
@On("0 50 0 * * ?")
public class CleanMemoryDataJob extends Job {

  public void doJob() {

//   
//    if(!ConfUtils.runCronJob){
//      models.utils.LogUtils.printLogNormal("Conf set as NOT to run cron job. Now EXIT: " + DateUtils.getNowDateTimeStrSdsm());
//      return;
//    }else{
//      models.utils.LogUtils.printLogNormal("Conf set as to run cron job. Now started: " + DateUtils.getNowDateTimeStrSdsm());
//    }

    //always on
   
    try {

      AgentDataProvider adp = AgentDataProvider.getInstance();

      adp.resetData();

      models.utils.LogUtils.printLogNormal("Successful resetData " + DateUtils.getNowDateTimeStr());
     
    } catch (Throwable t) {

      models.utils.LogUtils.printLogError("Error occured in AgentSmartUpgradeJob");
    }

  }

}
TOP

Related Classes of jobs.CleanMemoryDataJob

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.