public class BackgroundProcessService extends Service {
@Override
public Map onExecute(Map params) {
BackgroundEventController controller = BackgroundEventController.getInstance();
Map map = new HashMap();
map.put(ParamsConst.PROCESS, controller.getActiveProcesses());
return map;
}