com.neeve.event
Interface IEventAcknowledger


public interface IEventAcknowledger

The event acknowledger interface.

Threading:
A event acknowledger is not safe for concurrent access by multiple threads.

Method Summary
 void ack(Event event)
          Acknowledge the completion of the processing of an event.
 void dispose()
          Dispose of an acknowledger.
 

Method Detail

ack

void ack(Event event)
Acknowledge the completion of the processing of an event.

Parameters:
event - The event being whoe processing completion is being acknowledged.
Threading:
This method can be invoked by any thread of the user's choosing.

dispose

void dispose()
Dispose of an acknowledger.

This method never needs to be invoked by a user. It is automatically invoked by an event when the event is disposed. The method is present to enable acknowledger pooling by the acknowledger implementation.



Copyright © 2016 Neeve Research, LLC. All Rights Reserved.