def __init__(self):
     if not hasattr(config, "SYNCHRONIZATION_QUERY_USER_TRANSFORM_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.SYNCHRONIZATION_QUERY_USER_TRANSFORM_SERVICE
     self.func_handler = FunctionHandler(self.handler_id, synchronization_query_user_transform_service_run)
     self.func_handler.pre_handler = synchronization_query_user_transform_service_pretreatment
     self.func_handler.last_handler = synchronization_query_user_transform_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "ROOM_MGR_EXIST_ROOM_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.ROOM_MGR_EXIST_ROOM_SERVICE
     self.func_handler = FunctionHandler(self.handler_id, room_mgr_exist_room_service_run)
     self.func_handler.pre_handler = room_mgr_exist_room_service_pretreatment
     self.func_handler.last_handler = room_mgr_exist_room_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "USER_LOGIN_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.USER_LOGIN_SERVICE
     self.func_handler = FunctionHandler(self.handler_id, user_login_service_run)
     self.func_handler.pre_handler = user_login_service_pretreatment
     self.func_handler.last_handler = user_login_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "SYNCHRONIZATION_REPORT_ACTION_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.SYNCHRONIZATION_REPORT_ACTION_SERVICE
     self.func_handler = FunctionHandler(self.handler_id, synchronization_report_action_service_run)
     self.func_handler.pre_handler = synchronization_report_action_service_pretreatment
     self.func_handler.last_handler = synchronization_report_action_service_aftertreatment
Example #5
0
 def __init__(self):
     if not hasattr(config, "GAME_MGR_AOE_FREEZE_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_AOE_FREEZE_SERVICE
     self.func_handler = FunctionHandler(self.handler_id,
                                         game_mgr_aoe_freeze_service_run)
     self.func_handler.pre_handler = game_mgr_aoe_freeze_service_pretreatment
     self.func_handler.last_handler = game_mgr_aoe_freeze_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "GAME_MGR_QUERY_MATCHING_RESULT_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_QUERY_MATCHING_RESULT_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, game_mgr_query_matching_result_service_run)
     self.func_handler.pre_handler = game_mgr_query_matching_result_service_pretreatment
     self.func_handler.last_handler = game_mgr_query_matching_result_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "USER_CHANGE_PASSWORD_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.USER_CHANGE_PASSWORD_SERVICE
     self.func_handler = FunctionHandler(self.handler_id,
                                         user_change_password_service_run)
     self.func_handler.pre_handler = user_change_password_service_pretreatment
     self.func_handler.last_handler = user_change_password_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "GAME_MGR_SOLVE_WEAPONS_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_SOLVE_WEAPONS_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, game_mgr_solve_weapons_service_run)
     self.func_handler.pre_handler = game_mgr_solve_weapons_service_pretreatment
     self.func_handler.last_handler = game_mgr_solve_weapons_service_aftertreatment
 def __init__(self):
     if not hasattr(config, "GAME_MGR_REGISTER_ROBOT_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_REGISTER_ROBOT_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, game_mgr_register_robot_service_run)
     self.func_handler.pre_handler = game_mgr_register_robot_service_pretreatment
     self.func_handler.last_handler = game_mgr_register_robot_service_aftertreatment
Example #10
0
 def __init__(self):
     if not hasattr(config, "GAME_MGR_QUERY_BORN_POINT_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_QUERY_BORN_POINT_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, game_mgr_query_born_point_service_run)
     self.func_handler.pre_handler = game_mgr_query_born_point_service_pretreatment
     self.func_handler.last_handler = game_mgr_query_born_point_service_aftertreatment
Example #11
0
 def __init__(self):
     if not hasattr(config, "ROOM_MGR_QUERY_USER_BELONGED_ROOM_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.ROOM_MGR_QUERY_USER_BELONGED_ROOM_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, room_mgr_query_user_belonged_room_service_run)
     self.func_handler.pre_handler = room_mgr_query_user_belonged_room_service_pretreatment
     self.func_handler.last_handler = room_mgr_query_user_belonged_room_service_aftertreatment
Example #12
0
 def __init__(self):
     if not hasattr(config, "GAME_MGR_PLAY_WITH_OTHERS_SERVICE"):
         raise Exception("config file service id not define")
     self.handler_id = config.GAME_MGR_PLAY_WITH_OTHERS_SERVICE
     self.func_handler = FunctionHandler(
         self.handler_id, game_mgr_play_with_others_service_run)
     self.func_handler.pre_handler = game_mgr_play_with_others_service_pretreatment
     self.func_handler.last_handler = game_mgr_play_with_others_service_aftertreatment