mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-26 00:00:51 +00:00
10 lines
181 B
Java
10 lines
181 B
Java
package com.iluwatar.poison.pill;
|
|
|
|
/**
|
|
* Endpoint to publish {@link Message} to queue
|
|
*/
|
|
public interface MqPublishPoint {
|
|
|
|
void put(Message msg) throws InterruptedException;
|
|
}
|