Skip to content

Instantly share code, notes, and snippets.

@dtryon
Created April 10, 2012 11:26
Show Gist options
  • Save dtryon/2350649 to your computer and use it in GitHub Desktop.
Save dtryon/2350649 to your computer and use it in GitHub Desktop.
Simple IBus with Action<T>
public interface IBus
{
void Publish<T>(Action<T> action);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment