Exemple #1
0
 public static MQChannel IfNackThen(this MQChannel mq, Func <string, string, Exception, dynamic, bool> handler)
 {
     mq.nackHandler = handler;
     return(mq);
 }
Exemple #2
0
 public static MQChannel IfAckThen(this MQChannel mq, Action <string, string> handler)
 {
     mq.ackHandler = handler;
     return(mq);
 }