Elixir has Hedwig.
defmodule HedwigDemo.Responders.Ping do
@moduledoc ”””
ping-pong
”””
use Hedwig.Responder
hear ~r/ping/i, msg do
reply msg, “pong”
end
end
Slide 9
Slide 9 text
Compare Hedwig with another chat-bot framework.
Slide 10
Slide 10 text
Compare Hedwig with another chat-bot framework.
Botkit !
Slide 11
Slide 11 text
Botkit Hedwig
Slide 12
Slide 12 text
Botkit Hedwig
Slide 13
Slide 13 text
single thread
event loop
callback
Slide 14
Slide 14 text
single thread
event loop
callback
fail!
Slide 15
Slide 15 text
single thread
event loop
callback
fail!
System down!
Slide 16
Slide 16 text
sup
process process process
Slide 17
Slide 17 text
sup
process process process
fail!
Slide 18
Slide 18 text
sup
process process process
fail!
process
re-spawn!