mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 02:59:23 +00:00
10 lines
175 B
Java
10 lines
175 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
* Endpoint to publish {@link Message} to queue
|
|
*/
|
|
public interface MQPublishPoint {
|
|
|
|
public void put(Message msg) throws InterruptedException;
|
|
}
|