Merge pull request #752 from UnAfraid/patch-1

Fixed typo in State-Machines wiki page
This commit is contained in:
Ruben Bermudez 2020-05-31 19:08:04 +01:00 committed by GitHub
commit 05db723802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,30 +70,29 @@ Now, after your naughty bot retaliates, the user can say "go left or else" to fo
## Complete Example ## Complete Example
```java ```java
public static class ReplyFlowBot extends AbilityBot { public class ReplyFlowBot extends AbilityBot {
public class ReplyFlowBot extends AbilityBot {
public ReplyFlowBot(String botToken, String botUsername) { public ReplyFlowBot(String botToken, String botUsername) {
super(botToken, botUsername); super(botToken, botUsername);
} }
@Override @Override
public int creatorId() { public int creatorId() {
return <YOUR ID HERE>; return <YOUR ID HERE>;
} }
public ReplyFlow directionFlow() { public ReplyFlow directionFlow() {
Reply saidLeft = Reply.of(upd -> silent.send("Sir, I have gone left.", getChatId(upd)), Reply saidLeft = Reply.of(upd -> silent.send("Sir, I have gone left.", getChatId(upd)),
hasMessageWith("go left or else")); hasMessageWith("go left or else"));
ReplyFlow leftflow = ReplyFlow.builder(db) ReplyFlow leftflow = ReplyFlow.builder(db)
.action(upd -> silent.send("I don't know how to go left.", getChatId(upd))) .action(upd -> silent.send("I don't know how to go left.", getChatId(upd)))
.onlyIf(hasMessageWith("left")) .onlyIf(hasMessageWith("left"))
.next(saidLeft).build(); .next(saidLeft).build();
Reply saidRight = Reply.of(upd -> silent.send("Sir, I have gone right.", getChatId(upd)), Reply saidRight = Reply.of(upd -> silent.send("Sir, I have gone right.", getChatId(upd)),
hasMessageWith("right")); hasMessageWith("right"));
return ReplyFlow.builder(db) return ReplyFlow.builder(db)
.action(upd -> silent.send("Command me to go left or right!", getChatId(upd))) .action(upd -> silent.send("Command me to go left or right!", getChatId(upd)))
.onlyIf(hasMessageWith("wake up")) .onlyIf(hasMessageWith("wake up"))
.next(leftflow) .next(leftflow)
@ -103,9 +102,9 @@ public static class ReplyFlowBot extends AbilityBot {
@NotNull @NotNull
private Predicate<Update> hasMessageWith(String msg) { private Predicate<Update> hasMessageWith(String msg) {
return upd -> upd.getMessage().getText().equalsIgnoreCase(msg); return upd -> upd.getMessage().getText().equalsIgnoreCase(msg);
} }
} }
``` ```
## Inline Declaration ## Inline Declaration
As you can see in the above example, we used a bottom-up approach. We declared the leaf replies before we got to the root reply flow. As you can see in the above example, we used a bottom-up approach. We declared the leaf replies before we got to the root reply flow.