1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef OHOS_APP_DISPATCHER_SPEC_DISPATCHER_CONFIG_H 16 #define OHOS_APP_DISPATCHER_SPEC_DISPATCHER_CONFIG_H 17 18 #include <string> 19 #include "task_priority.h" 20 21 namespace OHOS { 22 namespace AppExecFwk { 23 class SpecDispatcherConfig { 24 public: 25 static constexpr const char *MAIN = "DispatcherMain"; 26 static constexpr const char *UI = "DispatcherUI"; 27 28 public: SpecDispatcherConfig(std::string name,TaskPriority priority)29 SpecDispatcherConfig(std::string name, TaskPriority priority) 30 { 31 name_ = name; 32 priority_ = priority; 33 } ~SpecDispatcherConfig()34 ~SpecDispatcherConfig(){}; GetName()35 std::string GetName() 36 { 37 return name_; 38 } 39 GetPriority()40 TaskPriority GetPriority() 41 { 42 return priority_; 43 } 44 45 private: 46 std::string name_; 47 TaskPriority priority_; 48 }; 49 50 } // namespace AppExecFwk 51 } // namespace OHOS 52 53 #endif 54