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 16import { ElementName } from '../bundle/elementName'; 17import abilityManager from '../@ohos.app.ability.abilityManager'; 18 19/** 20 * The class of an ability running information. 21 * 22 * @since 8 23 * @syscap SystemCapability.Ability.AbilityRuntime.Core 24 * @systemapi hide this for inner system use 25 * @permission N/A 26 */ 27export interface AbilityRunningInfo { 28 /** 29 * @default ability element name 30 * @since 8 31 * @syscap SystemCapability.Ability.AbilityRuntime.Core 32 * @systemapi hide this for inner system use 33 */ 34 ability: ElementName; 35 36 /** 37 * @default process id 38 * @since 8 39 * @syscap SystemCapability.Ability.AbilityRuntime.Core 40 * @systemapi hide this for inner system use 41 */ 42 pid: number; 43 44 /** 45 * @default user id 46 * @since 8 47 * @syscap SystemCapability.Ability.AbilityRuntime.Core 48 * @systemapi hide this for inner system use 49 */ 50 uid: number; 51 52 /** 53 * @default the name of the process 54 * @since 8 55 * @syscap SystemCapability.Ability.AbilityRuntime.Core 56 * @systemapi hide this for inner system use 57 */ 58 processName: string; 59 60 /** 61 * @default ability start time 62 * @since 8 63 * @syscap SystemCapability.Ability.AbilityRuntime.Core 64 * @systemapi hide this for inner system use 65 */ 66 startTime: number; 67 68 /** 69 * @default Enumerates state of the ability state info 70 * @since 8 71 * @syscap SystemCapability.Ability.AbilityRuntime.Core 72 * @systemapi hide this for inner system use 73 */ 74 abilityState: abilityManager.AbilityState; 75}