提交 82c2404b 编写于 作者: M Micha Kiener

SPR-6423, conversation object

上级 01522394
......@@ -172,9 +172,9 @@ public class ConversationImpl extends DestructionAwareAttributeMap implements Mu
}
/**
* @see org.springframework.conversation.manager.MutableConversation#endConversation(org.springframework.conversation.ConversationEndingType)
* @see org.springframework.conversation.manager.MutableConversation#internallyEndConversation(org.springframework.conversation.ConversationEndingType)
*/
public void endConversation(ConversationEndingType endingType) {
public void internallyEndConversation(ConversationEndingType endingType) {
// check, if this conversation was joined before and do not end it if so
if (joinCount > 0) {
joinCount--;
......
......@@ -107,7 +107,7 @@ public interface MutableConversation extends Conversation {
* ended (only passed on to any listeners, does not have an impact on the
* conversation manager)
*/
void endConversation(ConversationEndingType endingType);
void internallyEndConversation(ConversationEndingType endingType);
/**
* This method is a convenience method to
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册