10 lines
173 B
Java
10 lines
173 B
Java
![]() |
package com.iluwatar;
|
||
|
|
||
|
/**
|
||
|
* Endpoint to retrieve {@link Message} from queue
|
||
|
*/
|
||
|
public interface MQSubscribePoint {
|
||
|
|
||
|
public Message take() throws InterruptedException;
|
||
|
}
|