Skip to content

Instantly share code, notes, and snippets.

@soundmasteraj
Forked from singhsegv/DemoPresenter.java
Created December 3, 2020 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soundmasteraj/0e2f14ac2000518f5525a6afec51751f to your computer and use it in GitHub Desktop.
Save soundmasteraj/0e2f14ac2000518f5525a6afec51751f to your computer and use it in GitHub Desktop.
public class DemoPresenter extends DemoBasePresenter<DemoContract.View> implements DemoContract.Presenter {
@Inject
public DemoPresenter(DemoContract.View view) {
super(view);
}
@Override
public void unSubscribe() {
}
@Override
public void subscribe() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment