1 /*
2  * Copyright (c) 2022 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 
16 #include "work_scheduler_stub_imp.h"
17 
18 #include "hilog_wrapper.h"
19 
20 namespace OHOS {
21 namespace WorkScheduler {
OnWorkStart(WorkInfo & workInfo)22 void WorkSchedulerStubImp::OnWorkStart(WorkInfo& workInfo)
23 {
24     WS_HILOGI("begin.");
25     auto extension = extension_.lock();
26     if (extension != nullptr) {
27         extension->OnWorkStart(workInfo);
28         WS_HILOGI("end successfully.");
29     }
30 }
31 
OnWorkStop(WorkInfo & workInfo)32 void WorkSchedulerStubImp::OnWorkStop(WorkInfo& workInfo)
33 {
34     WS_HILOGI("begin.");
35     auto extension = extension_.lock();
36     if (extension != nullptr) {
37         extension->OnWorkStop(workInfo);
38         WS_HILOGI("end successfully.");
39     }
40 }
41 } // namespace WorkScheduler
42 } // namespace OHOS