Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public interface ICommandInvoker
  2. {
  3. void InvokeFor(SocketMessage message);
  4. }
  5.  
  6. public class CommandInvoker : ICommandInvoker
  7. {
  8. public void InvokeFor(SocketMessage message)
  9. {
  10. //no-op..just an example
  11. }
  12. }
Add Comment
Please, Sign In to add comment