List of usage examples for android.app Service stopSelf
public final void stopSelf(int startId)
From source file:com.parse.GCMService.java
/** * Stop the parent Service, if we're still running. *//*from w ww .j a v a 2s .c o m*/ private void stopParent(int startId) { Service p = parent.get(); if (p != null) { p.stopSelf(startId); } }