Files
java-design-patterns/poison-pill/src/main/java/com/iluwatar/MQSubscribePoint.java

10 lines
173 B
Java
Raw Normal View History

2015-04-05 18:03:16 +03:00
package com.iluwatar;
/**
* Endpoint to retrieve {@link Message} from queue
*/
public interface MQSubscribePoint {
public Message take() throws InterruptedException;
}