noisy
noisy

Reputation: 6823

How to establish a connection which will be used to sending data by server to application?

I am preparing an application for Android which will display current status of some services.

Application should get this information from my server. However there is no rule in periods between changes of statuses.

I want to avoid unnecessary requests to server.

How to establish a kind of connection, which will allow server to decide when send delta to application?

Upvotes: 0

Views: 72

Answers (2)

thaussma
thaussma

Reputation: 9886

Use the c2dm framework. They even have a sample application for Android and AppEngine: Jumpnote

Upvotes: 1

Related Questions