You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/dsm/lib/outbound_call.dsm

7 lines
289 B

-- another nonsensical fsm...
initial state start;
transition "just an example" start - / { playPrompt(1); playPrompt(2); playPrompt(3); } -> end;
state end;
transition "stop it" end - noAudioTest() / stop(true) -> end;
transition "bye recvd" (start, end) - hangup() / stop(false) -> end;