org.apache.camel.component.jms.reply
Interface CorrelationListener

All Known Implementing Classes:
MessageSelectorCreator

public interface CorrelationListener

Listener for events when correlation id's changes.


Method Summary
 void onEviction(String key)
          Callback when a correlation id is evicted due timeout
 void onPut(String key)
          Callback when a new correlation id is added
 void onRemove(String key)
          Callback when a correlation id is removed
 

Method Detail

onPut

void onPut(String key)
Callback when a new correlation id is added

Parameters:
key - the correlation id

onRemove

void onRemove(String key)
Callback when a correlation id is removed

Parameters:
key - the correlation id

onEviction

void onEviction(String key)
Callback when a correlation id is evicted due timeout

Parameters:
key - the correlation id


Apache Camel