public class InactivityConversationCanceller extends Object implements ConversationCanceller
Conversation after
a period of inactivity by the user.| 修飾子とタイプ | フィールドと説明 |
|---|---|
protected Conversation |
conversation |
protected Plugin |
plugin |
protected int |
timeoutSeconds |
| コンストラクタと説明 |
|---|
InactivityConversationCanceller(Plugin plugin,
int timeoutSeconds)
Creates an InactivityConversationCanceller.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
cancelBasedOnInput(ConversationContext context,
String input)
Cancels a conversation based on user input.
|
protected void |
cancelling(Conversation conversation)
Subclasses of InactivityConversationCanceller can override this method
to take additional actions when the inactivity timer abandons the
conversation.
|
ConversationCanceller |
clone()
Allows the
ConversationFactory to duplicate this
ConversationCanceller when creating a new Conversation. |
void |
setConversation(Conversation conversation)
Sets the conversation this ConversationCanceller can optionally cancel.
|
protected Plugin plugin
protected int timeoutSeconds
protected Conversation conversation
public InactivityConversationCanceller(Plugin plugin, int timeoutSeconds)
plugin - The owning plugin.timeoutSeconds - The number of seconds of inactivity to wait.public void setConversation(Conversation conversation)
ConversationCancellersetConversation インタフェース内 ConversationCancellerconversation - A conversation.public boolean cancelBasedOnInput(ConversationContext context, String input)
ConversationCancellercancelBasedOnInput インタフェース内 ConversationCancellercontext - Context information about the conversation.input - The input text from the user.public ConversationCanceller clone()
ConversationCancellerConversationFactory to duplicate this
ConversationCanceller when creating a new Conversation.
Implementing this method should reset any internal object state.
clone インタフェース内 ConversationCancellerclone クラス内 Objectprotected void cancelling(Conversation conversation)
conversation - The conversation being abandoned.Copyright © 2016. All rights reserved.