Skip to content

Instantly share code, notes, and snippets.

@scionwest
Created January 17, 2015 20:38
Show Gist options
  • Save scionwest/4d1f4921c66b30f26dc8 to your computer and use it in GitHub Desktop.
Save scionwest/4d1f4921c66b30f26dc8 to your computer and use it in GitHub Desktop.
public void Test()
{
var notification = new NotificationManager();
var handler = new ChatMessageHandler<WhisperMessage>();
handler.Register((msg, sub) =>
{
if (msg.Content == null)
{
sub.Unsubscribe(notification);
}
}, null);
notification.Subscribe<WhisperMessage>(handler);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment