Skip to content

Instantly share code, notes, and snippets.

@ilkinulas
Created April 17, 2016 08:40
Show Gist options
  • Save ilkinulas/82afc373f87f69b649aa29cc9fd9afdf to your computer and use it in GitHub Desktop.
Save ilkinulas/82afc373f87f69b649aa29cc9fd9afdf to your computer and use it in GitHub Desktop.
package codekata.observer;
public interface CountDownObserver {
void onStart();
void onCountDown(long elapsed, long remaining);
void onFinish();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment