Created
August 10, 2011 18:28
-
-
Save mookid8000/1137706 to your computer and use it in GitHub Desktop.
being explicit about message types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ICommand : IMessage {} | |
public interface IEvent : IMessage {} | |
public interface IRequest : IMessage {} | |
public interface IReply : IMessage {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment