Last active
September 13, 2017 14:15
-
-
Save JoseAlcerreca/2a9e8f21ff126cfb3b9667d2cb2dea4a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyLiveData extends LiveData<MyData> { | |
public MyLiveData(Context context) { | |
// Initialize service | |
} | |
@Override | |
protected void onActive() { | |
// Start listening | |
} | |
@Override | |
protected void onInactive() { | |
// Stop listening | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment