public static class

ActivityManager.RunningServiceInfo

extends Object
implements Parcelable
java.lang.Object
   ↳ android.app.ActivityManager.RunningServiceInfo

Class Overview

Information you can retrieve about a particular Service that is currently running in the system.

Summary

Constants
Creator<ActivityManager.RunningServiceInfo> CREATOR
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public long activeSince The time when the service was first made activity, either by someone starting or binding to it.
public int clientCount Number of clients connected to the service.
public int crashCount Number of times the service's process has crashed while the service is running.
public boolean foreground Set to true if the service has asked to run as a foreground process.
public long lastActivityTime The time when there was last activity in the service (either explicit requests to start it or clients binding to it).
public int pid If non-zero, this is the process the service is running in.
public String process The name of the process this service runs in.
public long restarting If non-zero, this service is not currently running, but scheduled to restart at the given time.
public ComponentName service The service component.
public boolean started Set to true if this service has been explicitly started.
Public Constructors
ActivityManager.RunningServiceInfo()
Public Methods
int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
void readFromParcel(Parcel source)
void writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel.
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Constants

public static final Creator<ActivityManager.RunningServiceInfo> CREATOR

Since: API Level 1

Fields

public long activeSince

Since: API Level 1

The time when the service was first made activity, either by someone starting or binding to it.

public int clientCount

Since: API Level 1

Number of clients connected to the service.

public int crashCount

Since: API Level 1

Number of times the service's process has crashed while the service is running.

public boolean foreground

Since: API Level 1

Set to true if the service has asked to run as a foreground process.

public long lastActivityTime

Since: API Level 1

The time when there was last activity in the service (either explicit requests to start it or clients binding to it).

public int pid

Since: API Level 1

If non-zero, this is the process the service is running in.

public String process

Since: API Level 1

The name of the process this service runs in.

public long restarting

Since: API Level 1

If non-zero, this service is not currently running, but scheduled to restart at the given time.

public ComponentName service

Since: API Level 1

The service component.

public boolean started

Since: API Level 1

Set to true if this service has been explicitly started.

Public Constructors

public ActivityManager.RunningServiceInfo ()

Since: API Level 1

Public Methods

public int describeContents ()

Since: API Level 1

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.

public void readFromParcel (Parcel source)

Since: API Level 1

public void writeToParcel (Parcel dest, int flags)

Since: API Level 1

Flatten this object in to a Parcel.

Parameters
dest The Parcel in which the object should be written.
flags Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.