to top
Android APIs
public class

PeriodicSync

extends Object
implements Parcelable
java.lang.Object
   ↳ android.content.PeriodicSync

Class Overview

Value type that contains information about a periodic sync. Is parcelable, making it suitable for passing in an IPC.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<PeriodicSync> CREATOR
public final Account account The account to be synced
public final String authority The authority of the sync
public final Bundle extras Any extras that parameters that are to be passed to the sync adapter.
public final long period How frequently the sync should be scheduled, in seconds.
Public Constructors
PeriodicSync(Account account, String authority, Bundle extras, long period)
Creates a new PeriodicSync, copying the Bundle
Public Methods
int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
boolean equals(Object o)
Compares this instance with the specified object and indicates if they are equal.
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

Fields

public static final Creator<PeriodicSync> CREATOR

Since: API Level 8

public final Account account

Since: API Level 8

The account to be synced

public final String authority

Since: API Level 8

The authority of the sync

public final Bundle extras

Since: API Level 8

Any extras that parameters that are to be passed to the sync adapter.

public final long period

Since: API Level 8

How frequently the sync should be scheduled, in seconds.

Public Constructors

public PeriodicSync (Account account, String authority, Bundle extras, long period)

Since: API Level 8

Creates a new PeriodicSync, copying the Bundle

Public Methods

public int describeContents ()

Since: API Level 8

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 boolean equals (Object o)

Since: API Level 8

Compares this instance with the specified object and indicates if they are equal. In order to be equal, o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.

The default implementation returns true only if this == o. See Writing a correct equals method if you intend implementing your own equals method.

The general contract for the equals and hashCode() methods is that if equals returns true for any two objects, then hashCode() must return the same value for these objects. This means that subclasses of Object usually override either both methods or neither of them.

Parameters
o the object to compare this instance with.
Returns
  • true if the specified object is equal to this Object; false otherwise.

public void writeToParcel (Parcel dest, int flags)

Since: API Level 8

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.