9 lines
216 B
Java
9 lines
216 B
Java
package com.iluwatar.poison.pill;
|
|
|
|
/**
|
|
* Represents abstraction of channel (or pipe) that bounds {@link Producer} and {@link Consumer}
|
|
*/
|
|
public interface MessageQueue extends MqPublishPoint, MqSubscribePoint {
|
|
|
|
}
|