mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-29 16:24:46 +00:00
10 lines
186 B
Java
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;
|
|
}
|