com.rabidgremlin.mutters.state.Guard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mutters-statemachine-bot Show documentation
Show all versions of mutters-statemachine-bot Show documentation
A framework for building bots.
package com.rabidgremlin.mutters.state;
import com.rabidgremlin.mutters.core.IntentMatch;
import com.rabidgremlin.mutters.core.session.Session;
public interface Guard
{
boolean passes(final IntentMatch request, final Session session);
String getDescription();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy