mirror of https://github.com/apache/activemq.git
14 lines
207 B
C#
14 lines
207 B
C#
|
using System;
|
||
|
|
||
|
namespace ActiveMQ
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Summary description for MessageAcknowledge.
|
||
|
/// </summary>
|
||
|
public interface MessageAcknowledge
|
||
|
{
|
||
|
void acknowledge(ActiveMQMessage caller);
|
||
|
}
|
||
|
|
||
|
}
|