public interface

DataEvent

implements Freezable<DataEvent>
com.google.android.gms.wearable.DataEvent

Class Overview

Data interface for data events.

Summary

Constants
int TYPE_CHANGED Indicates that the enclosing DataEvent was triggered by a data item being added or changed.
int TYPE_DELETED Indicates that the enclosing DataEvent was triggered by a data item being deleted.
Public Methods
abstract DataItem getDataItem()
Returns the data item modified in this event.
abstract int getType()
Returns the type of event this is.
[Expand]
Inherited Methods
From interface com.google.android.gms.common.data.Freezable

Constants

public static final int TYPE_CHANGED

Indicates that the enclosing DataEvent was triggered by a data item being added or changed.

Constant Value: 1 (0x00000001)

public static final int TYPE_DELETED

Indicates that the enclosing DataEvent was triggered by a data item being deleted.

Constant Value: 2 (0x00000002)

Public Methods

public abstract DataItem getDataItem ()

Returns the data item modified in this event. An event of TYPE_DELETED will only have its URI populated.

Returns
DataItem

public abstract int getType ()

Returns the type of event this is. One of TYPE_CHANGED, TYPE_DELETED.

Returns
int