2015-07-24 11:32:22 +03:00
|
|
|
package com.iluwatar.poison.pill;
|
2015-04-05 18:03:16 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint to retrieve {@link Message} from queue
|
|
|
|
*/
|
2015-12-25 23:49:28 +02:00
|
|
|
public interface MqSubscribePoint {
|
2015-04-05 18:03:16 +03:00
|
|
|
|
2015-11-01 21:29:13 -05:00
|
|
|
public Message take() throws InterruptedException;
|
2015-04-05 18:03:16 +03:00
|
|
|
}
|