Skip to content

Instantly share code, notes, and snippets.

@PulkitSethi1984
Last active May 23, 2019 00:38
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 PulkitSethi1984/b8e47d945e51001f88f262ef3c6c234e to your computer and use it in GitHub Desktop.
Save PulkitSethi1984/b8e47d945e51001f88f262ef3c6c234e to your computer and use it in GitHub Desktop.
public interface IObservableObject<T>
{
Guid Subscribe(Action<T> onNext);
void Unsubscribe(Guid guid);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment