added Poison Pill idiom

This commit is contained in:
vehpsr
2015-04-05 18:03:16 +03:00
parent 6366041781
commit dc0f578f8b
15 changed files with 398 additions and 1 deletions
@@ -0,0 +1,9 @@
package com.iluwatar;
/**
* Endpoint to publish {@link Message} to queue
*/
public interface MQPublishPoint {
public void put(Message msg) throws InterruptedException;
}