Conversation: Get the complete buffer

This commit is contained in:
Sebastian Kaspari 2010-03-21 16:37:19 +01:00
parent 04e496dc98
commit c63c332158
1 changed files with 10 additions and 0 deletions

View File

@ -115,6 +115,16 @@ public abstract class Conversation
return message;
}
/**
* Get the buffer
*
* @return
*/
public LinkedList<Message> getBuffer()
{
return buffer;
}
/**
* Does the channel have buffered messages?
*/