public class InactivityConversationCanceller extends Object implements ConversationCanceller
Conversation
after
a period of inactivity by the user.Constructor and Description |
---|
InactivityConversationCanceller(Plugin plugin,
int timeoutSeconds)
Creates an InactivityConversationCanceller.
|
Modifier and Type | Method and Description |
---|---|
boolean |
cancelBasedOnInput(ConversationContext context,
String input)
Cancels a conversation based on user input.
|
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.
|
public InactivityConversationCanceller(Plugin plugin, int timeoutSeconds)
plugin
- The owning plugin.timeoutSeconds
- The number of seconds of inactivity to wait.public void setConversation(Conversation conversation)
ConversationCanceller
setConversation
in interface ConversationCanceller
conversation
- A conversation.public boolean cancelBasedOnInput(ConversationContext context, String input)
ConversationCanceller
cancelBasedOnInput
in interface ConversationCanceller
context
- Context information about the conversation.input
- The input text from the user.public ConversationCanceller clone()
ConversationCanceller
ConversationFactory
to duplicate this
ConversationCanceller when creating a new Conversation
.
Implementing this method should reset any internal object state.
clone
in interface ConversationCanceller
clone
in class Object
Copyright © 2022. All rights reserved.