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

10 lines
186 B
Java

package com.iluwatar.poison.pill;
/**
* Endpoint to retrieve {@link Message} from queue
*/
public interface MqSubscribePoint {
public Message take() throws InterruptedException;
}