mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-25 12:23:20 -04:00
9c8b1f0ee1
Signed-off-by: zhangyafei-echo <zhangyafei12@huawei.com> Change-Id: I0e000924ab5fa17ad59d998c573e41177803a562
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
/*
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
* 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.
|
|
*/
|
|
let Callee = requireNapi('application.Callee');
|
|
let AbilityConstant = requireNapi('app.ability.AbilityConstant');
|
|
|
|
class Ability {
|
|
constructor() {
|
|
this.callee = new Callee('rpc.application.callee');
|
|
console.log('Ability::constructor callee is ' + typeof this.callee + ' ' + this.callee);
|
|
}
|
|
onCreate(want) { }
|
|
onDestroy() { }
|
|
onWindowStageCreate(windowStage) { }
|
|
onWindowStageDestroy() { }
|
|
onForeground(want) { }
|
|
onBackground() { }
|
|
onPrepareToTerminate() {
|
|
return false;
|
|
}
|
|
onMemoryLevel(level) { }
|
|
onWindowStageRestore(windowStage) { }
|
|
onCallRequest() {
|
|
console.log('Ability::onCallRequest callee is ' + typeof this.callee + ' ' + this.callee);
|
|
return this.callee;
|
|
}
|
|
onContinue(wantParams) { }
|
|
onConfigurationUpdated(config) { }
|
|
onConfigurationUpdate(newConfig) { }
|
|
onNewWant(want, param) { }
|
|
dump(params) { }
|
|
onDump(params) { }
|
|
|
|
onSaveState(state, wantParams) {
|
|
return AbilityConstant.OnSaveResult.RECOVERY_AGREE;
|
|
}
|
|
onShare(wantParams) { }
|
|
}
|
|
|
|
export default Ability; |