001 package org.tynamo.conversations;
002
003 import org.tynamo.conversations.services.Conversation;
004
005 public interface ConversationAware {
006 public void onConversationCreated(Conversation conversation);
007
008 public void onConversationEnded(Conversation conversation, boolean expired);
009 }